Difference between revisions of "ISDATETIME()"

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"
  
 
int ISDATETIME(order)
 
int ISDATETIME(order)
Line 35: Line 35:
  
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
check_datetime()
 
check_datetime()

Latest revision as of 07:40, 11 April 2013

PURPOSE

Is the parameter a datetime

SYNONYM

None

SYNOPSIS

#include "lianja_api.h"
 
int	ISDATETIME(order)
 
<input parameters>
int	order;		/* Placement in actual parameter list		*/
 
<output parameters>
none

DESCRIPTION

The function checks if the specified parameter is a datetime. It returns 1 if true, or 0 if false. The order specifies the actual placements in the parameter list.

EXAMPLE

The following example returns .T. if the first parameter passed is a datetime, or .F. otherwise.

Example Lianja script:

m_values =  datetime()
m_isdatetime=check_datetime(m_values)
return

Example 'C' function:

#include "lianja_api.h"
 
check_datetime()
{
    _retl( ISDATETIME(1));
}

SEE ALSO

_parts(), _retts(), DATE_DATETIME(), DATE_STOT(), DATE_TTOS()