summaryrefslogtreecommitdiff
path: root/kernel/include/libk/string.h
blob: 9fe8448559fa0c7e47b02afb050d804c659a3b14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STRING_H
#define STRING_H

#include <types.h>

size_t strlen(const char* s);
uint64_t stoi(const char *s);
void itos(uint64_t num, char* s);
void itoh(uint64_t num, char* s);
void strrev(char *s);

#endif