Compiled utility programs for rhel7

This commit is contained in:
2017-01-25 11:37:53 +01:00
parent 6762b0d437
commit 5ed400e2ff
9 changed files with 1205 additions and 5 deletions

18
utils/strlutil.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* strlutil.h
* Provide strcpy, strlcat when not provided by ssystem
*
* Created on: Mar 25, 2010
* Author: koennecke
*/
#ifndef STRLUTIL_H_
#define STRLUTIL_H_
#ifndef strlcpy
size_t strlcat(char *dst, const char *src, size_t siz);
size_t strlcpy(char *dst, const char *src, size_t siz);
#endif
#endif /* STRLUTIL_H_ */