aboutsummaryrefslogtreecommitdiff
path: root/src/lib/inc/str.h
blob: 0e00e758136e1cc1f94ea30bfefddfda99302a9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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);
char *strinv(char *s);
char *strdup(const char *s);

#endif