b260b11a3b
The utility library is for functions which are shared in commands, but that does not belong to libproc-ng. The first function is a wrapper for strtol that performs error checking, and exists if such happen. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
7 lines
128 B
C
7 lines
128 B
C
#ifndef PROCPS_NG_STRUTILS
|
|
#define PROCPS_NG_STRUTILS
|
|
|
|
extern long strtol_or_err(const char *str, const char *errmesg);
|
|
|
|
#endif
|