asm_parser/asm_parser.c

17 lines
719 B
C
Raw Normal View History

/***************************************************************************
* file name : asm_parser.c *
* author : *
* description : the functions are declared in asm_parser.h *
* The intention of this library is to parse a .ASM file *
* *
* *
***************************************************************************
*
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "asm_parser.h"
/* to do - implement all the functions in asm_parser.h */