Lazuli
string.h
Go to the documentation of this file.
1 /*
2  * SPDX-License-Identifier: GPL-3.0-only
3  * This file is part of Lazuli.
4  */
5 
15 #ifndef STRING_H
16 #define STRING_H
17 
18 #include <Lazuli/common.h>
19 
21 
32 size_t
33 strlen(const char *s);
34 
36 
37 #endif /* STRING_H */
#define _EXTERN_C_DECL_BEGIN
Open C++ header file declarations.
Definition: common.h:37
size_t strlen(const char *s)
Get the length of the string pointed by s.
Definition: string.c:20
Basic type definitions and useful macros.
#define _EXTERN_C_DECL_END
Close C++ header file declarations.
Definition: common.h:42