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

#ifndef _MISC_H_
#define _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 CCTK_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_SetLogical(CCTK_INT *data, const char *value);

#ifdef __cplusplus
           }   
#endif

#endif