17 lines
437 B
C
17 lines
437 B
C
#ifndef __DVM_TOOLS_H__
|
|
#define __DVM_TOOLS_H__
|
|
|
|
#include <dvm_types.h>
|
|
|
|
int config_read( config *cfg);
|
|
void config_write(config *cfg);
|
|
|
|
double scan35( unsigned char *b);
|
|
short scan4( unsigned char *b);
|
|
|
|
void print35( unsigned char *buf, double val, unsigned char supress_zero);
|
|
void printS35( unsigned char *buf, unsigned char sign, double val, unsigned char supress_zero);
|
|
|
|
void print4( unsigned char *buf, short val);
|
|
#endif
|