Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:02:04

0001 #ifndef MAD_PARSE_H
0002 #define MAD_PARSE_H
0003 
0004 // interface
0005 
0006 char*   v_format(const char* string);
0007 double  simple_double(char** toks, int start, int end);
0008 int     in_spec_list(char* string);
0009 void    pre_split(char* inbuf, struct char_array* outbuf, int fill_flag);
0010 char*   spec_join(char**, int);
0011 
0012 #endif // MAD_PARSE_H
0013