You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
** constdefs.h
|
|
**
|
|
** Standard macro definitions for se screen editor
|
|
**
|
|
** This file is part of mse, under GPLv3.
|
|
*/
|
|
|
|
#ifndef __CONSTDEFS_H
|
|
#define __CONSTDEFS_H
|
|
#define EOS '\0'
|
|
#define ERR (-3)
|
|
#define OK (-2)
|
|
#define NO 0
|
|
#define YES 1
|
|
#endif
|