f3e15b8c8d
- aggiunti file della libreria e progetto visual studio.
43 lines
1.9 KiB
C
43 lines
1.9 KiB
C
/*****************************************************************************/
|
|
/* */
|
|
/* Copyright (C) 2001-2023 M. Held */
|
|
/* */
|
|
/* This code is not in the public domain. All rights reserved! Please make */
|
|
/* sure to read the full copyright statement contained in "README.txt" or in */
|
|
/* the "main" file of this code, such as "main.cc". */
|
|
/* */
|
|
/*****************************************************************************/
|
|
/* */
|
|
/* Written by: Stefan Huber */
|
|
/* Modified: Martin Held */
|
|
/* */
|
|
/* E-Mail: held@cs.sbg.ac.at */
|
|
/* Fax Mail: (+43 662) 8044-611 */
|
|
/* Voice Mail: (+43 662) 8044-6304 */
|
|
/* Snail Mail: Martin Held */
|
|
/* FB Informatik */
|
|
/* Universitaet Salzburg */
|
|
/* A-5020 Salzburg, Austria */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
|
|
#ifndef VRONI_TYPES_H
|
|
#define VRONI_TYPES_H
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_BOOL
|
|
#include <stdbool.h>
|
|
typedef bool vr_bool;
|
|
#else
|
|
#define false 0
|
|
#define true (!false)
|
|
typedef unsigned char vr_bool;
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|