Lazuli
Loading...
Searching...
No Matches
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
32size_t
33strlen(const char *s);
34
36
37#endif /* STRING_H */
Basic type definitions and useful macros.
#define _EXTERN_C_DECL_BEGIN
Open C++ header file declarations.
Definition common.h:39
#define _EXTERN_C_DECL_END
Close C++ header file declarations.
Definition common.h:44
size_t strlen(const char *s)
Get the length of the string pointed by s.
Definition string.c:20