Mercurial > libedl
view include/util.h @ 13:41b74137e201
include: make header guards sane
double underscores are reserved to the implementation by
the C standard
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 03 Apr 2024 20:48:51 -0400 |
parents | 0c98b46eaf73 |
children |
line wrap: on
line source
#ifndef EDL_INTERNAL_UTIL_H_ #define EDL_INTERNAL_UTIL_H_ #include <stddef.h> size_t EDL_internal_strnlen(const char* s, size_t maxlen); char* EDL_internal_strnchr(const char* haystack, char needle, size_t length); char* EDL_internal_strdup(const char* s); #endif /* EDL_INTERNAL_UTIL_H_ */