X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Futil.h;h=0101bf7b544d4bae1e3d7dc4535999cdcf8e9503;hb=149f577a25508779b756515be1f1bdcefa3710fa;hp=962bad2f31376a23b799a818e2f6acdcce38554e;hpb=ba25c9d14ad6de05f13d3ebb1fa9242eebf34266;p=sliver-openvswitch.git diff --git a/lib/util.h b/lib/util.h index 962bad2f3..0101bf7b5 100644 --- a/lib/util.h +++ b/lib/util.h @@ -98,6 +98,7 @@ void ovs_print_version(char *date, char *time, void out_of_memory(void) NO_RETURN; void *xmalloc(size_t) MALLOC_LIKE; void *xcalloc(size_t, size_t) MALLOC_LIKE; +void *xzalloc(size_t) MALLOC_LIKE; void *xrealloc(void *, size_t); void *xmemdup(const void *, size_t) MALLOC_LIKE; char *xmemdup0(const char *, size_t) MALLOC_LIKE; @@ -120,6 +121,14 @@ bool str_to_uint(const char *, int base, unsigned int *); bool str_to_ulong(const char *, int base, unsigned long *); bool str_to_ullong(const char *, int base, unsigned long long *); +bool str_to_double(const char *, double *); + +int hexit_value(int c); + +char *dir_name(const char *file_name); + +void ignore(bool x UNUSED); + #ifdef __cplusplus } #endif