git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'interrupt-rework' into prog-loader
[lunaix-os.git]
/
lunaix-os
/
usr
/
includes
/
string.h
1
#ifndef __LUNAIX_STRING_H
2
#define __LUNAIX_STRING_H
3
4
#include <stddef.h>
5
6
size_t
7
strlen(const char* str);
8
9
size_t
10
strnlen(const char* str, size_t max_len);
11
12
char*
13
strncpy(char* dest, const char* src, size_t n);
14
15
#endif /* __LUNAIX_STRING_H */