]> git.mxchange.org Git - simgear.git/blob - simgear/math/sg_memory.h
Modified Files:
[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 General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifndef _SG_MEMORY_H
25 #define _SG_MEMORY_H
26
27 #ifdef HAVE_CONFIG_H
28 #  include <simgear_config.h>
29 #endif
30
31 #ifdef HAVE_MEMCPY
32
33 #  ifdef HAVE_MEMORY_H
34 #    include <memory.h>
35 #  endif
36
37 #  define sgmemcmp            memcmp
38 #  define sgmemcpy            memcpy
39 #  define sgmemzero(dest,len) memset(dest,0,len)
40
41 #elif defined(HAVE_BCOPY)
42
43 #  define sgmemcmp              bcmp
44 #  define sgmemcpy(dest,src,n)  bcopy(src,dest,n)
45 #  define sgmemzero             bzero
46
47 #else
48
49 /* 
50  * Neither memcpy() or bcopy() available.
51  * Use substitutes provided be zlib.
52  */
53
54 #  include <zutil.h>
55 #  define sgmemcmp zmemcmp
56 #  define sgmemcpy zmemcpy
57 #  define sgmemzero zmemzero
58
59 #endif
60
61 #endif // _SG_MEMORY_H
62
63