]> git.mxchange.org Git - simgear.git/blob - simgear/math/sg_memory.h
Ignore generated binaries.
[simgear.git] / simgear / math / sg_memory.h
1 /**
2  * \file sg_memory.h
3  * memcpy/bcopy portability declarations (not actually used by anything
4  * as best as I can tell.
5  */
6
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU Library General Public
18 // License along with this library; if not, write to the
19 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 // Boston, MA  02111-1307, USA.
21 //
22 // $Id$
23
24
25 #ifndef _SG_MEMORY_H
26 #define _SG_MEMORY_H
27
28 #ifdef HAVE_CONFIG_H
29 #  include <simgear_config.h>
30 #endif
31
32 #ifdef HAVE_MEMCPY
33
34 #  ifdef HAVE_MEMORY_H
35 #    include <memory.h>
36 #  endif
37
38 #  define sgmemcmp            memcmp
39 #  define sgmemcpy            memcpy
40 #  define sgmemzero(dest,len) memset(dest,0,len)
41
42 #elif defined(HAVE_BCOPY)
43
44 #  define sgmemcmp              bcmp
45 #  define sgmemcpy(dest,src,n)  bcopy(src,dest,n)
46 #  define sgmemzero             bzero
47
48 #else
49
50 /* 
51  * Neither memcpy() or bcopy() available.
52  * Use substitutes provided be zlib.
53  */
54
55 #  include <zutil.h>
56 #  define sgmemcmp zmemcmp
57 #  define sgmemcpy zmemcpy
58 #  define sgmemzero zmemzero
59
60 #endif
61
62 #endif // _SG_MEMORY_H
63
64