summaryrefslogtreecommitdiffabout
path: root/include/napkin/util.h
blob: bf7946d96abbb9b463d636f24629da5bf1ca0e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __NAPKIN_UTIL_H
#define __NAPKIN_UTIL_H

#include <time.h>
#include <string>

namespace napkin {
    using std::string;

    string strftime(const char *fmt,time_t t);

}

#endif /* __NAPKIN_UTIL_H */