blob: ef374a5b68396bce4d1747c7def4b1f0baf0be06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* File: helper.h
*
* General helper functions
*/
#ifndef HELPER_H
#define HELPER_H
uint32_t time_ms();
int32_t arg_parse_freq(const char *str);
#endif // HELPER_H
|