mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-23 10:28:05 +00:00
14 lines
243 B
C
14 lines
243 B
C
|
#ifndef __CR_STRING_H__
|
||
|
#define __CR_STRING_H__
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#ifndef CONFIG_HAS_STRLCPY
|
||
|
extern size_t strlcpy(char *dest, const char *src, size_t size);
|
||
|
#endif
|
||
|
|
||
|
#endif /* __CR_STRING_H__ */
|