/*
READ THIS FILE AND CHANGE THE SOURCE WHEREVER YOU SEE COMMENTS STARTING
WITH THE WORD *TODO*
WHEN YOU ARE FINISHED YOU CAN
FILE : interface.c
HEADER : interface.h
BAS : timeutils.bas
AUTHOR : AIR
DATE:
CONTENT:
This is the interface.c file for the ScriptBasic module timeutils
----------------------------------------------------------------------------
UXLIBS:-lm -ldl
----------------------------------------------------------------------------
DWLIBS:
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "../../basext.h"
typedef struct _ModuleObject {
char a; /* You may delete this. It is here to make the initial interface.c compilable. */
}ModuleObject,*pModuleObject;
besVERSION_NEGOTIATE
return (int)INTERFACE_VERSION;
besEND
besSUB_ERRMSG
switch( iError ){
case 0x00080000: return "ERROR HAS HAPPENED";
}
return "Unknown timeutils module error.";
besEND
besSUB_START
pModuleObject p;
besMODULEPOINTER = besALLOC(sizeof(ModuleObject));
if( besMODULEPOINTER == NULL )return 0;
besEND
besSUB_FINISH
pModuleObject p;
/*
YOU CERTAINLY NEED THIS POINTER TO FREE ALL RESOURCES THAT YOU ALLOCATED
YOU NEED NOT CALL besFREE TO FREE THE MEMORY ALLOCATED USING besALLOC
CLOSE ANY FILE THAT REMAINED OPEN, RELEASE DATABASE HANDLES AND ALL
OTHER RESOURCES INCLUDING MEMORY *NOT* ALLOCATED CALLING besALLOC
*/
p = (pModuleObject)besMODULEPOINTER;
if( p == NULL )return 0;
return 0;
besEND
/**
=section WeekNumber
=H title that goes into the BASIC documentation for this function
detail here what the function does so that the BASIC programmer
can understand how he/she can use it
*/
besFUNCTION(WeekNumber)
pModuleObject p;
struct tm tm;
char format[32];
int yr,mon,day;
p = (pModuleObject)besMODULEPOINTER;
besARGUMENTS("iii")
&yr,&mon,&day
besARGEND
sprintf(format,"%d-%02d-%02d",yr,mon,day);
strptime(format, "%Y-%m-%d", &tm);
strftime(format, sizeof(format),"%V", &tm);
besSET_RETURN_STRING(format);
besEND
SLFST TIMEUTILS_SLFST[] ={
{ "versmodu" , versmodu },
{ "bootmodu" , bootmodu },
{ "finimodu" , finimodu },
{ "emsgmodu" , emsgmodu },
{ "WeekNumber" , WeekNumber },
{ NULL , NULL }
};