source: libabac/abac_util.h @ 9335cfa

mei_rt2mei_rt2_fix_1
Last change on this file since 9335cfa was c586a3c, checked in by Mei <mei@…>, 12 years ago

1) add support for float static range constraint
2) add a testcase for testing float static range constraint
3) add runall-fast (skipping the creddy part)

  • Property mode set to 100644
File size: 367 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);
9char *abac_trim_quotes(char *);
10
11#ifdef DEBUG
12#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
13#else
14#define debug_printf(...) do { } while (0)
15#endif
16
17#endif /* __UTIL_H__ */
Note: See TracBrowser for help on using the repository browser.