1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
/*
* This header was originally copied from util-linux at fall 2011.
*/
#ifndef PROCPS_NG_STRUTILS
#define PROCPS_NG_STRUTILS
extern long strtol_or_err(const char *str, const char *errmesg);
extern double strtod_or_err(const char *str, const char *errmesg);
double strtod_nol_or_err(const char *str, const char *errmesg);
int mbswidth(const char *restrict s, wchar_t *restrict *const restrict pwcs);
void stablesort(void *const base, size_t nritems, size_t itemsize, int (*cmp)(const void *, const void *));
#endif
|