blob: 288be67885933f59369ab09db4199a56cf0a48ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _OG_UTILS_H
#define _OG_UTILS_H
#include <stdint.h>
void str_toupper(char *str);
void str_tolower(char *str);
int safe_strtoull(const char *str, uint64_t *out_value, int base, uint64_t max);
#endif
|