Files
Toy/tools/disassembler/utils.h
2023-08-22 18:23:27 -03:00

25 lines
454 B
C

/*
* utils.h
*
* Created on: 10 ago. 2023
* Original Author: Emiliano Augusto Gonzalez (egonzalez . hiperion @ gmail . com)
*
* Further modified by Kayne Ruse, and added to the Toy Programming Language tool repository.
*/
#ifndef UTILS_H_
#define UTILS_H_
struct Node {
void *data;
struct Node *next;
};
extern struct Node *queue_front, *queue_rear;
void enqueue(void *x);
void dequeue(void);
void* front(void);
#endif /* UTILS_H_ */