9 lines
150 B
C
9 lines
150 B
C
|
|
#ifndef _VISOR_STD_H_
|
||
|
|
#define _VISOR_STD_H_
|
||
|
|
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
size_t strlcpy(char *restrict dest, const char *restrict src, size_t size);
|
||
|
|
|
||
|
|
#endif
|