Codebase list gtkwave / 457be729-5368-47f5-83d0-c4fdf3c09209/main src / baseconvert.h
457be729-5368-47f5-83d0-c4fdf3c09209/main

Tree @457be729-5368-47f5-83d0-c4fdf3c09209/main (Download .tar.gz)

baseconvert.h @457be729-5368-47f5-83d0-c4fdf3c09209/mainraw · history · blame

/*
 * 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