aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
blob: 35970d47414ad680fb44a388a54a62fbc5da6088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef COMMON_UTIL_H_
#define COMMON_UTIL_H_

#include <features.h>
#include <time.h>

#ifndef UNUSED
#define UNUSED __attribute__ ((__unused__))
#endif

void convert_iso8601(const char *time_string, int ts_len, struct tm *tm_data);

#endif