aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
blob: 464e7dcca90b45cdeec67e7ab638185178ef7a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _UTIL_H_
#define _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