source: libabac/abac_util.h @ d4b3b52

abac0-leakabac0-meicompt_changesmei-idmei-rt0-nmei_rt0tvf-new-xml
Last change on this file since d4b3b52 was 9a411d7, checked in by Mike Ryan <mikeryan@…>, 14 years ago

fold intersection into ordinary role object

  • Property mode set to 100644
File size: 335 bytes
Line 
1#ifndef __UTIL_H__
2#define __UTTL_H__
3
4#include <sys/types.h>
5
6void *abac_xmalloc(size_t);
7char *abac_xstrdup(char *);
8void abac_split(char *string, char *delim, char **ret, int *num);
9
10#ifdef DEBUG
11#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
12#else
13#define debug_printf(...) do { } while (0)
14#endif
15
16#endif /* __UTIL_H__ */
Note: See TracBrowser for help on using the repository browser.