comparison src/include/utils.h @ 9:07f0e2f43204

*: add the restrict keyword when necessary also fixed some typos in the README
author Paper
date Fri, 16 Dec 2022 21:55:37 -0500
parents be4835547dd0
children 42ac054c0231
comparison
equal deleted inserted replaced
8:00399cc5f7ce 9:07f0e2f43204
1 #ifndef __utils_h 1 #ifndef __utils_h
2 #define __utils_h 2 #define __utils_h
3 3
4 long long get_system_time_in_milliseconds(void); 4 uint64_t get_system_time_in_milliseconds(void);
5 unsigned int crc32b(unsigned char *message); 5 uint32_t crc32b(unsigned char *message);
6 6
7 #endif 7 #endif