23 lines
670 B
C
Vendored
23 lines
670 B
C
Vendored
/* Zeta API - Z/keys/language.h
|
|
______ ______________ ___
|
|
|__ / | ___|___ ___|/ \
|
|
/ /__| __| | | / - \
|
|
/______|_____| |__| /__/ \__\
|
|
Copyright (C) 2006-2024 Manuel Sainz de Baranda y Goñi.
|
|
Released under the terms of the GNU Lesser General Public License v3. */
|
|
|
|
#ifndef Z_keys_language_H
|
|
#define Z_keys_language_H
|
|
|
|
#define Z_LANGUAGE_C 1
|
|
#define Z_LANGUAGE_CPP 3
|
|
#define Z_LANGUAGE_OBJECTIVE_C 5
|
|
#define Z_LANGUAGE_OBJECTIVE_CPP 7
|
|
|
|
#define Z_LANGUAGE_STRING_C "C"
|
|
#define Z_LANGUAGE_STRING_CPP "C++"
|
|
#define Z_LANGUAGE_STRING_OBJECTIVE_C "Objective-C"
|
|
#define Z_LANGUAGE_STRING_OBJECTIVE_CPP "Objective-C++"
|
|
|
|
#endif /* Z_keys_language_H */
|