9 lines
219 B
C
9 lines
219 B
C
#ifndef CONVERTER_H
|
|
#define CONVERTER_H
|
|
|
|
void printBits(size_t const size, void const * const ptr);
|
|
long parseInst(char* instruction, char* argA, char* argB);
|
|
|
|
int convertFile(char* filename, char* destination);
|
|
|
|
#endif |