| Server IP : 185.216.8.13 / Your IP : 216.73.217.53 Web Server : Apache System : Linux webhost-vie2.sitetide.com 4.18.0-553.156.1.el8_10.x86_64 #1 SMP Mon Aug 17 17:52:57 UTC 2026 x86_64 User : medicalkn ( 9986) PHP Version : 8.2.33 Disable Function : syslog MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/pgsql-17/include/ |
Upload File : |
/* src/interfaces/ecpg/include/pgtypes_date.h */
#ifndef PGTYPES_DATETIME
#define PGTYPES_DATETIME
#include <pgtypes.h>
#include <pgtypes_timestamp.h>
typedef long date;
#ifdef __cplusplus
extern "C"
{
#endif
extern date * PGTYPESdate_new(void);
extern void PGTYPESdate_free(date * d);
extern date PGTYPESdate_from_asc(char *str, char **endptr);
extern char *PGTYPESdate_to_asc(date dDate);
extern date PGTYPESdate_from_timestamp(timestamp dt);
extern void PGTYPESdate_julmdy(date jd, int *mdy);
extern void PGTYPESdate_mdyjul(int *mdy, date * jdate);
extern int PGTYPESdate_dayofweek(date dDate);
extern void PGTYPESdate_today(date * d);
extern int PGTYPESdate_defmt_asc(date * d, const char *fmt, const char *str);
extern int PGTYPESdate_fmt_asc(date dDate, const char *fmtstring, char *outbuf);
#ifdef __cplusplus
}
#endif
#endif /* PGTYPES_DATETIME */