Apache HTTPD
Macros | Functions
apr_date.c File Reference
#include "apr.h"
#include "apr_lib.h"
#include "apr_want.h"
#include "apr_date.h"

Go to the source code of this file.

Macros

#define APR_WANT_STRFUNC
 
#define TIMEPARSE(ds, hr10, hr1, min10, min1, sec10, sec1)
 
#define TIMEPARSE_STD(ds, timstr)
 

Functions

 APU_DECLARE (int)
 
 APU_DECLARE (apr_time_t)
 

Macro Definition Documentation

◆ APR_WANT_STRFUNC

#define APR_WANT_STRFUNC

Definition at line 31 of file apr_date.c.

◆ TIMEPARSE

#define TIMEPARSE (   ds,
  hr10,
  hr1,
  min10,
  min1,
  sec10,
  sec1 
)
Value:
{ \
ds.tm_hour = ((hr10 - '0') * 10) + (hr1 - '0'); \
ds.tm_min = ((min10 - '0') * 10) + (min1 - '0'); \
ds.tm_sec = ((sec10 - '0') * 10) + (sec1 - '0'); \
}
apr_size_t size

Definition at line 306 of file apr_date.c.

◆ TIMEPARSE_STD

#define TIMEPARSE_STD (   ds,
  timstr 
)
Value:
{ \
timstr[3],timstr[4], \
timstr[6],timstr[7]); \
}

Definition at line 312 of file apr_date.c.

Function Documentation

◆ APU_DECLARE()

APU_DECLARE ( apr_time_t  )

Definition at line 145 of file apr_date.c.