abac0-leak
Last change
on this file since 5d1c372 was
c5720ad,
checked in by Mei <mei@…>, 11 years ago
|
1) flesh out abac_chunk_t utilities
|
-
Property mode set to
100644
|
File size:
750 bytes
|
Line | |
---|
1 | #ifndef __UTIL_H__ |
---|
2 | #define __UTIL_H__ |
---|
3 | |
---|
4 | #include <sys/types.h> |
---|
5 | #include <stdlib.h> |
---|
6 | |
---|
7 | #ifndef __ABAC_CHUNK_T__ |
---|
8 | #define __ABAC_CHUNK_T__ |
---|
9 | typedef struct _abac_chunk_t { |
---|
10 | unsigned char *ptr; |
---|
11 | int len; |
---|
12 | } abac_chunk_t; |
---|
13 | |
---|
14 | void abac_chunk_free(abac_chunk_t); |
---|
15 | abac_chunk_t abac_chunk_dup(char *, int); |
---|
16 | abac_chunk_t abac_chunk_new(char *, int); |
---|
17 | int abac_chunk_null(abac_chunk_t); |
---|
18 | int abac_chunk_show(abac_chunk_t); |
---|
19 | |
---|
20 | #endif /* __ABAC_CHUNK_T__ */ |
---|
21 | |
---|
22 | |
---|
23 | void *abac_xmalloc(size_t); |
---|
24 | char *abac_xstrdup(char *); |
---|
25 | void *abac_xrealloc(void *, size_t); |
---|
26 | void abac_split(char *string, char *delim, char **ret, int *num); |
---|
27 | |
---|
28 | #ifdef DEBUG |
---|
29 | #define debug_printf(...) fprintf(stderr, __VA_ARGS__) |
---|
30 | #else |
---|
31 | #define debug_printf(...) do { } while (0) |
---|
32 | #endif |
---|
33 | |
---|
34 | #endif /* __UTIL_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.