File: baseconvert.h

package info (click to toggle)
gtkwave 3.3.98-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,200 kB
  • sloc: ansic: 136,610; sh: 4,558; cpp: 2,156; java: 634; makefile: 310; lex: 236; xml: 194; perl: 93; objc: 68; csh: 28; tcl: 25
file content (24 lines) | stat: -rw-r--r-- 717 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) Tony Bybell 2010
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 */

#ifndef WAVE_BASECONVERT_H
#define WAVE_BASECONVERT_H

char *convert_ascii(Trptr t, vptr v);
char *convert_ascii_vec(Trptr t, char *vec);
char *convert_ascii_real(Trptr t, double *d);
char *convert_ascii_string(char *s);
char *convert_ascii_vec_2(Trptr t, char *vec);
double convert_real_vec(Trptr t, char *vec);
double convert_real(Trptr t, vptr v);
int vtype(Trptr t, char *vec);
int vtype2(Trptr t, vptr v);

#endif