work on Qt GUI, still not working properly

This commit is contained in:
Jeff Wang
2019-04-04 00:33:42 -04:00
parent 8f39958679
commit fc6d8efc5f
17 changed files with 328 additions and 33 deletions

View File

@ -10,6 +10,10 @@
#include <stdint.h>
#include "../utils.h"
#ifdef __cplusplus
extern "C" {
#endif
#define DEC80_NUM_LSU 9
//allow full range, but reserve -16384 for special numbers
@ -57,4 +61,8 @@ int8_t decn_to_str(char* buf, const dec80* x);
void decn_to_str_complete(char* buf, const dec80* x);
#endif
#ifdef __cplusplus
}
#endif
#endif /* SRC_DEC_DECN_H_ */