10 lines
153 B
C
10 lines
153 B
C
#ifndef UTILS_HPP
|
|
#define UTILS_HPP
|
|
|
|
|
|
#if !defined(HAVE_STRNDUP)
|
|
char *strndup(const char *s, size_t n);
|
|
#endif /* ! HAVE_STRNDUP */
|
|
|
|
#endif //UTILS_HPP
|