0
0
mirror of https://github.com/ecki/net-tools.git synced 2025-04-12 03:53:03 +00:00
Files
Mike Frysinger 648cb66426 util: drop new() helper
It's only used in one place, and it's not super obvious what it does
since this is all C code.
2021-01-04 10:45:03 -05:00

25 lines
625 B
C

#include <stddef.h>
void *xmalloc(size_t sz);
void *xrealloc(void *p, size_t sz);
char *xstrdup(const char *src);
int kernel_version(void);
#define KRELEASE(maj,min,patch) ((maj) * 10000 + (min)*1000 + (patch))
long ticks_per_second(void);
int nstrcmp(const char *, const char *);
char *safe_strncpy(char *dst, const char *src, size_t size);
#define netmin(a,b) ((a)<(b) ? (a) : (b))
#define netmax(a,b) ((a)>(b) ? (a) : (b))
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
/* Positions count starting from 1. */
#define attribute_printf(fmtpos, varpos) \
__attribute__((__format__(__printf__, fmtpos, varpos)))