mirror of
https://github.com/elliotnunn/NetBoot.git
synced 2024-11-08 20:07:50 +00:00
26 lines
441 B
C
26 lines
441 B
C
/* cond.h - conditional assembly support routines */
|
|
/* (c) in 2015 by Frank Wille */
|
|
|
|
#ifndef COND_H
|
|
#define COND_H
|
|
|
|
/* defines */
|
|
#ifndef MAXCONDLEV
|
|
#define MAXCONDLEV 63
|
|
#endif
|
|
|
|
/* global variables */
|
|
extern int clev;
|
|
|
|
/* functions */
|
|
void cond_init(void);
|
|
int cond_state(void);
|
|
void cond_check(void);
|
|
void cond_if(char);
|
|
void cond_skipif(void);
|
|
void cond_else(void);
|
|
void cond_skipelse(void);
|
|
void cond_endif(void);
|
|
|
|
#endif /* COND_H */
|