source: libabac/abac_util.h @ ca402ad

abac0-leak
Last change on this file since ca402ad was 8164e70, checked in by Mei <mei@…>, 11 years ago

1) tweak with changes for handling abac_chunk_t

  • Property mode set to 100644
File size: 714 bytes
RevLine 
[7f25a67f]1#ifndef __UTIL_H__
[f2622ee]2#define __UTIL_H__
[7f25a67f]3
4#include <sys/types.h>
[461541a]5#include <stdlib.h>
[7f25a67f]6
[f2622ee]7#ifndef __ABAC_CHUNK_T__
8#define __ABAC_CHUNK_T__
9typedef struct _abac_chunk_t {
10    unsigned char *ptr;
11    int len;
12} abac_chunk_t;
13#endif /* __ABAC_CHUNK_T__ */
14
15void abac_chunk_free(abac_chunk_t);
[8164e70]16abac_chunk_t abac_chunk_dup(char *, int);
17abac_chunk_t abac_chunk_new(char *, int);
18int abac_chunk_null(abac_chunk_t);
19
20
[7764378]21void *abac_xmalloc(size_t);
[3c251d0]22char *abac_xstrdup(char *);
[461541a]23void *abac_xrealloc(void *, size_t);
[9a411d7]24void abac_split(char *string, char *delim, char **ret, int *num);
[7f25a67f]25
[dbbf777]26#ifdef DEBUG
27#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
28#else
29#define debug_printf(...) do { } while (0)
30#endif
31
[7f25a67f]32#endif /* __UTIL_H__ */
Note: See TracBrowser for help on using the repository browser.