1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/* (C) Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007 Stijn van Dongen
* (C) Copyright 2008, 2009, 2010, 2011 Stijn van Dongen
*
* This file is part of tingea. You can redistribute and/or modify tingea
* under the terms of the GNU General Public License; either version 3 of the
* License or (at your option) any later version. You should have received a
* copy of the GPL along with tingea, in the file COPYING.
*/
#ifndef tingea_let
#define tingea_let
#include "types.h"
#include "ting.h"
#define TRM_FAIL 0
#define TRM_ISNUM 1
#define TRM_ISREAL 2
#define TRM_ISINF 3
#define TRM_ISNAN 4
typedef struct telRaam telRaam;
telRaam* trmInit
( const char* str
) ;
mcxstatus trmExit
( telRaam* raam
) ;
mcxstatus trmParse
( telRaam* raam
) ;
int trmEval
( telRaam* raam
, long* lp
, double* fp
) ;
void trmRegister
( telRaam* raam
, int (user_parse)(mcxTing* txt, int offset)
, mcxenum (user_eval)(const char* token, long *ival, double *fval)
, char user_char
) ;
mcxbool trmError
( int flags
) ;
mcxbool trmIsReal
( int flags
) ;
mcxbool trmIsNum
( int flags
) ;
mcxbool trmIsNan
( int flags
) ;
mcxbool trmIsInf
( int flags
) ;
void trmDump
( telRaam* raam
, const char* msg
) ;
void trmDebug
( void
) ;
#endif
|