blob: 44ac0c95295af264627f231793de6df5b5f06b2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef INPUT_H_
#define INPUT_H_
#include <ctype.h>
#include <stdint.h>
#include <stdio.h>
uint32_t hex_to_decimal(const uint32_t decimal);
uint32_t get_next_instruction(FILE *const iptr);
void goto_previous_instruction(FILE *const iptr);
#endif
|