aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string.h
blob: fe925cbbc4854a8d33c5a08b183e6489e91bd3fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MELVIX_STRING_H
#define MELVIX_STRING_H

#include <stddef.h>

size_t strlen(const char *str);

void strcpy(char *dest, const char *orig);

void strdisp(char *str, int n);

void strcat(char *dest, const char *orig);

void strcati(char *dest, const char *orig);

char strcmp(const char *a, const char *b);

char *strdup(const char *orig);

void strinv(char *str);

#endif