Functions
Time.h functions

This header provides functions ported from Unix in time.h. More...

Functions

char * strptime (const char *buf, const char *fmt, struct tm *tm)
 Convert a string representation of time to a time tm structure . More...
 

Detailed Description

This header provides functions ported from Unix in time.h.

Function Documentation

◆ strptime()

char* strptime ( const char *  buf,
const char *  fmt,
struct tm *  tm 
)

Convert a string representation of time to a time tm structure .

Parameters
bufThe string to convert.
fmtThe representation of time. tm The time tm structure.
Returns
The first character not processed in this function call.

This function converts the string s to a time tm structure and fill the buffer tm. The format of the time is specified by format. on success, this function returns the first character not processed in this function call, NULL otherwise.

Conformity: Non applicable.

Supported OS: Windows XP.

References strptime().

Referenced by eina_value_util_time_string_new(), and strptime().