repo.or.cz
/
gammu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wrong character in the GSM 03.38 table (ç for Ç)
[gammu.git]
/
helper
/
strptime.h
blob
22ef460bb08f062bd69d472c4ac3f4d66e7ca925
1
#ifndef __helper__strptime_h__
2
#define __helper__strptime_h__
3
4
#include <gammu-config.h>
5
6
#ifdef HAVE_STRPTIME
7
#define _XOPEN_SOURCE
8
#define _BSD_SOURCE
9
#include <time.h>
10
#else
11
#include <time.h>
12
char
*
strptime
(
const char
*
buf
,
const char
*
fmt
,
struct
tm
*
tm
);
13
#endif
14
15
#endif