ToolBox Library 2.1.0
An Library containing function and class to make developing in C faster
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__))
8size_t
9cstring_len(const char *cstring);
10
11__attribute__((__pure__))
12bool
13cstring_equal(const char *restrict cstring_1, const char *restrict cstring_2);
14
15#endif