1 /*
2  * Copyright (c) Tony Bybell 2010
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  */
9 
10 #ifndef WAVE_BASECONVERT_H
11 #define WAVE_BASECONVERT_H
12 
13 char *convert_ascii(Trptr t, vptr v);
14 char *convert_ascii_vec(Trptr t, char *vec);
15 char *convert_ascii_real(Trptr t, double *d);
16 char *convert_ascii_string(char *s);
17 char *convert_ascii_vec_2(Trptr t, char *vec);
18 double convert_real_vec(Trptr t, char *vec);
19 double convert_real(Trptr t, vptr v);
20 int vtype(Trptr t, char *vec);
21 int vtype2(Trptr t, vptr v);
22 
23 #endif
24 
25