blob: f4c63b1cca3d85fb7748e7a13fba76d6c4065cbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef STRING_H
#define STRING_H
#include <def.h>
u32 strlen(const char *s);
char *strcpy(char *dst, const char *src);
char *strchr(const char *s, int c);
char *strcat(char *dst, const char *src);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, u32 n);
char *strinv(char *s);
char *strdup(const char *s);
#endif
|