Difference between revisions of "DATE TTOS()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
m (Text replace - "lianjaapi.h" to "lianja_api.h")
 
Line 7: Line 7:
 
==SYNOPSIS==
 
==SYNOPSIS==
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
char *DATE_TTOS(date)
 
char *DATE_TTOS(date)
Line 25: Line 25:
  
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
lianjaapi_date_ttos()
 
lianjaapi_date_ttos()

Latest revision as of 06:49, 11 April 2013

PURPOSE

Return datetime as a string

SYNONYM

api_date_ttos()

SYNOPSIS

#include "lianja_api.h"
 
char	*DATE_TTOS(date)
 
<input parameters>
DATETIME	datetime;		/* datetime		*/
 
<output parameters>
none

DESCRIPTION

The DATE_TTOS() function will return the specified datetime as a character string in the format "YYYYMMDDHHMMSS".

EXAMPLE

The following example converts today's date and time to character pointer.

#include "lianja_api.h"
 
lianjaapi_date_ttos()
{
    char		datetime[23];
 
    if (_parinfo(1) != API_TTYPE) {
       _retc("");
    }
 
    strcpy( DATE_TTOS(_parts(1) );
 
    _retc( datetime );
}

SEE ALSO

_parts(), _retts(), ISDATETIME(), DATE_DATETIME(), DATE_STOT()