blob: a6c52dae1d60e177237f39890be6f55de9b83407 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __ARLA_UTIL_H
#define __ARLA_UTIL_H 1
char *copy_basename (const char *s);
char *copy_dirname (const char *s);
/* timeval */
void timevalfix(struct timeval *t1);
void timevaladd(struct timeval *t1, const struct timeval *t2);
void timevalsub(struct timeval *t1, const struct timeval *t2);
#endif /* __ARLA_UTIL_H */
|