OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [isoinfra/] [current/] [include/] [string.h] - Blame information for rev 865

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
#ifndef CYGONCE_ISO_STRING_H
2
#define CYGONCE_ISO_STRING_H
3
/*========================================================================
4
//
5
//      string.h
6
//
7
//      ISO string functions
8
//
9
//========================================================================
10
// ####ECOSGPLCOPYRIGHTBEGIN####
11
// -------------------------------------------
12
// This file is part of eCos, the Embedded Configurable Operating System.
13
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
14
//
15
// eCos is free software; you can redistribute it and/or modify it under
16
// the terms of the GNU General Public License as published by the Free
17
// Software Foundation; either version 2 or (at your option) any later
18
// version.
19
//
20
// eCos is distributed in the hope that it will be useful, but WITHOUT
21
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23
// for more details.
24
//
25
// You should have received a copy of the GNU General Public License
26
// along with eCos; if not, write to the Free Software Foundation, Inc.,
27
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
28
//
29
// As a special exception, if other files instantiate templates or use
30
// macros or inline functions from this file, or you compile this file
31
// and link it with other works to produce a work based on this file,
32
// this file does not by itself cause the resulting work to be covered by
33
// the GNU General Public License. However the source code for this file
34
// must still be made available in accordance with section (3) of the GNU
35
// General Public License v2.
36
//
37
// This exception does not invalidate any other reasons why a work based
38
// on this file might be covered by the GNU General Public License.
39
// -------------------------------------------
40
// ####ECOSGPLCOPYRIGHTEND####
41
//========================================================================
42
//#####DESCRIPTIONBEGIN####
43
//
44
// Author(s):     jlarmour
45
// Contributors:
46
// Date:          2000-04-14
47
// Purpose:       This file provides the string macros, types and functions
48
//                required by ISO C and POSIX 1003.1. It may also provide
49
//                other compatibility functions like BSD-style string
50
//                functions
51
// Description:   The real contents of this file get set from the
52
//                configuration (set by the implementation)
53
// Usage:         #include <string.h>
54
//
55
//####DESCRIPTIONEND####
56
//
57
//======================================================================
58
*/
59
 
60
/* CONFIGURATION */
61
 
62
#include <pkgconf/isoinfra.h>          /* Configuration header */
63
 
64
/* INCLUDES */
65
 
66
/* This is the "standard" way to get NULL and size_t from stddef.h,
67
 * which is the canonical location of the definitions.
68
 */
69
#define __need_NULL
70
#define __need_size_t
71
#include <stddef.h>
72
 
73
#ifdef CYGINT_ISO_STRERROR
74
# include CYGBLD_ISO_STRERROR_HEADER
75
#endif
76
 
77
/* memcpy() and memset() are special as they are used internally by
78
 * the compiler, so they *must* exist. So if no-one claims to implement
79
 * them, prototype them anyway */
80
 
81
#ifdef CYGBLD_ISO_MEMCPY_HEADER
82
# include CYGBLD_ISO_MEMCPY_HEADER
83
#else
84
 
85
extern
86
# ifdef __cplusplus
87
"C"
88
# endif
89
void *
90
memcpy( void *, const void *, size_t );
91
 
92
#endif
93
 
94
#ifdef CYGBLD_ISO_MEMSET_HEADER
95
# include CYGBLD_ISO_MEMSET_HEADER
96
#else
97
 
98
extern
99
# ifdef __cplusplus
100
"C"
101
# endif
102
void *
103
memset( void *, int, size_t );
104
 
105
#endif
106
 
107
#ifdef CYGINT_ISO_STRTOK_R
108
# include CYGBLD_ISO_STRTOK_R_HEADER
109
#endif
110
 
111
#ifdef CYGINT_ISO_STRING_LOCALE_FUNCS
112
# include CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER
113
#endif
114
 
115
#ifdef CYGINT_ISO_STRING_BSD_FUNCS
116
# include CYGBLD_ISO_STRING_BSD_FUNCS_HEADER
117
#endif
118
 
119
#ifdef CYGINT_ISO_STRING_MEMFUNCS
120
# include CYGBLD_ISO_STRING_MEMFUNCS_HEADER
121
#endif
122
 
123
#ifdef CYGINT_ISO_STRING_STRFUNCS
124
# include CYGBLD_ISO_STRING_STRFUNCS_HEADER
125
#endif
126
 
127
#endif /* CYGONCE_ISO_STRING_H multiple inclusion protection */
128
 
129
/* EOF string.h */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.