Files
c/kubernetes/include/utils.h
Ahmed Yarub Hani Al Nuaimi 835a9b8d58 Add C specific flags
2021-09-10 11:32:51 -03:00

17 lines
223 B
C

#ifndef UTILS_HPP
#define UTILS_HPP
#ifdef __cplusplus
extern "C" {
#endif
#if !defined(HAVE_STRNDUP)
char *strndup(const char *s, size_t n);
#endif /* ! HAVE_STRNDUP */
#ifdef __cplusplus
}
#endif
#endif //UTILS_HPP