naev 0.12.6
cond.h
1/*
2 * See Licensing and Copyright notice in naev.h
3 */
4#pragma once
5
6int cond_init( void );
7void cond_exit( void );
8int cond_compile( const char *cond );
9int cond_check( const char *cond );
10int cond_checkChunk( int chunk, const char *cond );
int cond_check(const char *cond)
Checks to see if a condition is true.
Definition cond.c:100
void cond_exit(void)
Destroys the conditional subsystem.
Definition cond.c:40
int cond_init(void)
Initializes the conditional subsystem.
Definition cond.c:23
int cond_compile(const char *cond)
Compiles a conditional statement that can then be used as a reference.
Definition cond.c:52