Subversion Repositories tendra.SVN

Rev

Rev 2 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#   		 Crown Copyright (c) 1997
2
#   
3
#   This TenDRA(r) Computer Program is subject to Copyright
4
#   owned by the United Kingdom Secretary of State for Defence
5
#   acting through the Defence Evaluation and Research Agency
6
#   (DERA).  It is made available to Recipients with a
7
#   royalty-free licence for its use, reproduction, transfer
8
#   to other parties and amendment for any purpose not excluding
9
#   product development provided that any such use et cetera
10
#   shall be deemed to be acceptance of the following conditions:-
11
#   
12
#       (1) Its Recipients shall ensure that this Notice is
13
#       reproduced upon any copies or amended versions of it;
14
#   
15
#       (2) Any amended version of it shall be clearly marked to
16
#       show both the nature of and the organisation responsible
17
#       for the relevant amendment or amendments;
18
#   
19
#       (3) Its onward transfer from a recipient to another
20
#       party shall be deemed to be that party's acceptance of
21
#       these conditions;
22
#   
23
#       (4) DERA gives no warranty or assurance as to its
24
#       quality or suitability for any purpose and DERA accepts
25
#       no liability whatsoever in relation to any use to which
26
#       it may be put.
27
#
28
+IMPLEMENT "ansi", "stddef.h", "null" (!?) ;
29
+IMPLEMENT "ansi", "stddef.h", "size_t" (!?) ;
30
 
31
+FUNC char *strcat ( char *, const char * ) ;
32
+FUNC int strcmp ( const char *, const char * ) ;
33
+FUNC char *strcpy ( char *, const char * ) ;
34
+FUNC size_t strcspn ( const char *, const char * ) ;
35
+FUNC size_t strlen ( const char * ) ;
36
+FUNC char *strncat ( char *, const char *, size_t ) ;
37
+FUNC int strncmp ( const char *, const char *, size_t ) ;
38
+FUNC char *strncpy ( char *, const char *, size_t ) ;
39
+FUNC size_t strspn ( const char *, const char * ) ;
40
+FUNC char *strtok ( char *, const char * ) ;
41
 
42
+IFNDEF ~protect ( "cpp", "cstring" )
43
# These are overloaded in C++
44
+FUNC char *strchr ( const char *, int ) ;
45
+FUNC char *strrchr ( const char *, int ) ;
46
+FUNC char *strpbrk ( const char *, const char * ) ;
47
+FUNC char *strstr ( const char *, const char * ) ;
48
+IFNDEF __JUST_POSIX
49
+FUNC void *memchr ( const void *, int, size_t ) ;
50
+ENDIF
51
+ENDIF
52
 
53
+IFNDEF __JUST_POSIX
54
+FUNC int memcmp ( const void *, const void *, size_t ) ;
55
+FUNC void *memcpy ( void *, const void *, size_t ) ;
56
+FUNC void *memset ( void *, int, size_t ) ;
57
+FUNC int strcoll ( const char *, const char * ) ;
58
+FUNC char *strerror ( int ) ;
59
+FUNC size_t strxfrm ( char *, const char *, size_t ) ;
60
+IFNDEF __JUST_XPG3
61
+FUNC void *memmove ( void *, const void *, size_t ) ;
62
+ENDIF
63
+ENDIF