Files
mop3/libu/strconv.h
kamkow1 6c01de8b0d
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 40s
Build documentation / build-and-deploy (push) Successful in 26s
Merge all libs into libu
2026-04-12 13:45:37 +02:00

13 lines
323 B
C

#ifndef _LIBSTRING_STRCONV_H
#define _LIBSTRING_STRCONV_H
#include <stdint.h>
#define str_to_uint32(s) ((uint32_t)str_to_uint64 ((s)))
#define str_to_uint16(s) ((uint16_t)str_to_uint64 ((s)))
#define str_to_uint8(s) ((uint8_t)str_to_uint64 ((s)))
uint64_t str_to_uint64 (const char* s);
#endif // _LIBSTRING_STRCONV_H