blob: 65774e74fab309593b7f3ec07848b36692ff6825 (
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 STR_H
#define STR_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
|