visor/src/std.h

9 lines
150 B
C
Raw Normal View History

2025-03-10 19:19:53 +01:00
#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