Newer
Older
tree-os / src / include / util.h
@lukas lukas on 9 Mar 2022 195 bytes add file system: fat 16
#ifndef UTIL_H
#define UTIL_H

#include <stdint.h>

#define max(x, y) (x > y ? (x) : (y))

extern char *stringCombine(char *string1, char *string2);
extern uint32_t strlen(char *string);

#endif