summaryrefslogtreecommitdiff
path: root/kern/string.h
AgeCommit message (Collapse)Author
2018-02-24New errno.h standard headerRichard Braun
Use standard errno codes. This change also adds strerror to string.h.
2018-02-24Don't use reserved identifiersRichard Braun
2017-06-28kern/string: use the restrict keyword where appropriateRichard Braun
2017-05-28kern/string: implement strncmpRichard Braun
2017-05-11kern/string: new strchr functionRichard Braun
2017-02-04Clean up compilationRichard Braun
Instead of mixing standard headers and internal redefinitions of standard types, completely rely on the compiler for what is guaranteed for a free standing environment. This results in the removal of kern/stddef.h and kern/stdint.h. The kern/types.h header is reintroduced for the different (and saner) purpose of defining types not specified in standard C, namely ssize_t for now.
2012-11-08kern/string: implement strlcpyRichard Braun
2012-11-03Merge lib into kernRichard Braun
There are no precise enough criteria to justify the separation of these two directories.