ToolBox Library
2.1.0
An Library containing function and class to make developing in C faster
include
toolbox
cstring.h
1
#ifndef TOOLBOX_CSTRING_H
2
#define TOOLBOX_CSTRING_H
3
4
#include <stdbool.h>
5
#include <stddef.h>
6
7
__attribute__((__pure__))
8
size_t
9
cstring_len(
const
char
*cstring);
10
11
__attribute__((__pure__))
12
bool
13
cstring_equal(
const
char
*restrict cstring_1,
const
char
*restrict cstring_2);
14
15
#endif
Generated by
1.9.3