X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Futil.h;h=9df6db5836833522dfeb955fa98e19354f232fda;hb=26ad129e69fc7c800630dbd541dc2dcc8150c3a4;hp=b123ead28471d06c13564e5607da4706315a5917;hpb=c5bcb08001200972983486a22255a35960192ac7;p=openvswitch diff --git a/lib/util.h b/lib/util.h index b123ead2..9df6db58 100644 --- a/lib/util.h +++ b/lib/util.h @@ -96,6 +96,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; @@ -118,6 +119,16 @@ 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 *get_cwd(void); +char *dir_name(const char *file_name); +char *abs_file_name(const char *dir, const char *file_name); + +void ignore(bool x OVS_UNUSED); + #ifdef __cplusplus } #endif