blob: 64a7f81743a616365309ce4712b2c628a3227d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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 strrev(char *s);
#endif
|