blu_os
Loading...
Searching...
No Matches
string.h
1//
2// Created by dylan on 08/07/2026.
3//
4
5#ifndef BLU_OS_STRING_H
6#define BLU_OS_STRING_H
7
8#include <stddef.h>
9#include <sys/cdefs.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15int memcmp(const void*, const void*, size_t);
16void* memcpy(void* __restrict, const void* __restrict, size_t);
17void* memmove(void*, const void*, size_t);
18void* memset(void*, int, size_t);
19size_t strlen(const char*);
20
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif //BLU_OS_STRING_H
Common definitions for C programs.