mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-21 16:54:39 +00:00
16 lines
466 B
C
16 lines
466 B
C
|
|
#ifndef _LQUEUE_H_INCLUDED
|
|
#define _LQUEUE_H_INCLUDED
|
|
|
|
/* v2.11: line queue functions moved from input.c to lqueue.c */
|
|
|
|
extern void DeleteLineQueue( void );
|
|
extern void AddLineQueue( const char *line );
|
|
extern void AddLineQueueX( const char *fmt, ... );
|
|
extern void RunLineQueue( void );
|
|
//v2.11: replaced by macro
|
|
//extern bool is_linequeue_populated( void );
|
|
#define is_linequeue_populated() ModuleInfo.g.line_queue.head
|
|
|
|
#endif
|