FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
time_isdate.c
Go to the documentation of this file.
1
/* isdate function */
2
3
#include "
fb.h
"
4
5
/*:::::*/
6
FBCALL
int
fb_IsDate
(
FBSTRING
*s )
7
{
8
int
year;
9
int
month;
10
int
day;
11
int
succeeded =
fb_DateParse
( s, &day, &month, &year );
12
13
fb_hStrDelTemp
( s );
14
15
if
( !succeeded )
16
return
0;
17
18
return
-1;
19
}
rtlib
time_isdate.c
Generated on Thu Jan 23 2014 19:40:14 for FreeBASIC by
1.8.4