summaryrefslogtreecommitdiffhomepage
path: root/src/loader/inc/lib.h
blob: 997db67eb9807f00f3e4f57a62c587fec4e00a0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// MIT License, Copyright (c) 2021 Marvin Borner

#ifndef LIB_H
#define LIB_H

#include <def.h>

u32 strlen(const char *str);
u32 strnlen(const char *s, u32 max);
u32 strlcpy(char *dst, const char *src, u32 size);

int itoa(s32 value, char *buffer, u32 base);

#endif