repo.or.cz
/
WRF.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated top-level README and version_decl for V4.4.2 (#1795)
[WRF.git]
/
external
/
io_grib1
/
grib1_util
/
test_advance_time_str.c
blob
9388692f97f3e1470e9c7eeb293a4df59f5a4b4d
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include
"grib.h"
4
#include
"read_grib.h"
5
6
main
(
argc
,
argv
)
7
int
argc
;
8
char
*
argv
[];
9
{
10
char
enddate
[
15
];
11
advance_time_str
(
"200509081200"
,-
243
,
enddate
);
12
fprintf
(
stderr
,
"advanced to %s
\n
"
,
enddate
);
13
}