mse/src/constdefs.h

17 lines
249 B
C

/*
** 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