GRASS GIS 8 Programmer's Manual  8.4.0dev(2024)-535c39c9fc
type.h
Go to the documentation of this file.
1 /* LIBDGL -- a Directed Graph Library implementation
2  * Copyright (C) 2002 Roberto Micarelli
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 /*
20  * best view tabstop=4
21  */
22 
23 #ifndef _DGL_TYPE_H_
24 #define _DGL_TYPE_H_ 1
25 
26 /*
27  * local endianess
28  */
29 #ifdef WORDS_BIGENDIAN
30 #define G_XDR 1
31 #else
32 #define G_NDR 1
33 #endif
34 
35 typedef unsigned char dglByte_t;
36 typedef long dglInt32_t;
37 typedef long long dglInt64_t;
38 
39 #endif
long long dglInt64_t
Definition: type.h:37
unsigned char dglByte_t
Definition: type.h:35
long dglInt32_t
Definition: type.h:36