mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
For example, GLIBC doesn't provide strlcpy which we want to use Change-Id: Iebbadfd42ca8e5dc089a8fe0b670fef843a10027
17 lines
238 B
C
17 lines
238 B
C
#ifndef LIBA_BRIDGE_STRING_H
|
|
#define LIBA_BRIDGE_STRING_H
|
|
|
|
#include_next <string.h>
|
|
|
|
#include "../private/macros.h"
|
|
|
|
LIBA_BEGIN_DECLS
|
|
|
|
#if __GLIBC__
|
|
size_t strlcpy(char * dst, const char * src, size_t len);
|
|
#endif
|
|
|
|
LIBA_END_DECLS
|
|
|
|
#endif
|