summaryrefslogtreecommitdiff
path: root/src/include/cctk_Misc.h
blob: d2a5324acc1858125c0ab7f060839f46c814c5ce (plain)
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
 /*@@
   @header    cctk_Misc.h
   @date      Wed Jan 20 10:39:01 1999
   @author    Tom Goodale
   @desc 
   header file for miscellaneous routines.
   @enddesc 
   @version $Header$
 @@*/

#ifndef _CCTK_MISC_H_
#define _CCTK_MISC_H_

#ifdef __cplusplus
extern "C" {
#endif

int Util_SplitString(char **before, char **after, const char *string, const char *sep);

int CCTK_Equals(const char *string1, const char *string2);

char *Util_NullTerminateString(const char *, unsigned int);

int Util_InList(const char *string1, int n_elements, ...);

int Util_IntInRange(int inval, const char *range);
int Util_DoubleInRange(double inval, const char *range);
int Util_IntInRangeList(int inval, int n_elements, ...);
int Util_DoubleInRangeList(double inval, int n_elements, ...);

int CCTK_SetDoubleInRangeList(CCTK_REAL *data, const char *value, 
                              int n_elements, ...);
int CCTK_SetIntInRangeList(CCTK_INT *data, const char *value, 
                           int n_elements, ...);
int CCTK_SetKeywordInRangeList(char **data, const char *value, 
                               int n_elements, ...);
int CCTK_SetString(char **data, const char *value);
int CCTK_SetBoolean(CCTK_INT *data, const char *value);

int CCTK_RunTime(void);
int Util_CurrentTime(int len, char *now);
int Util_CurrentDate(int len, char *now);

#ifdef __cplusplus
}   
#endif

#endif