FENIX_libc/include/iso646.h

33 lines
667 B
C
Raw Permalink Normal View History

2020-11-18 09:41:58 +00:00
/*
* <iso646.h> - alternative spellings
*
* This header is a part of the FENIX C Library and is free software.
* You can redistribute and/or modify it subject to the terms of the
* Clumsy Wolf Public License v5. For more details, see the file COPYING.
2020-11-18 09:41:58 +00:00
*
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
* The CWPL for more details.
*/
/*
Why is this still a thing? It's stupid. Who uses this?
2020-11-18 09:41:58 +00:00
-Kat
*/
#ifndef _FLC_ISO646_H
#define _FLC_ISO646_H
#define and &&
#define and_eq &=
#define bitand &
#define bitor |
#define compl ~
#define not !
#define not_eq !=
#define or ||
#define or_eq |=
#define xor ^
#define xor_eq ^=
#endif