You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
247 B
10 lines
247 B
#ifndef OUTPUTHANDLING_H
|
|
#define OUTPUTHANDLING_H
|
|
|
|
#include "inputHandling.h"
|
|
|
|
extern void buildHexString(char* string, int num);
|
|
extern void buildOctString(char* string, int num);
|
|
extern void showResult(calc_op* res);
|
|
|
|
#endif // OUTPUTHANDLING_H
|