epoc32/include/libc/string.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
--- a/epoc32/include/libc/string.h	Tue Nov 24 13:55:44 2009 +0000
+++ b/epoc32/include/libc/string.h	Tue Mar 16 16:12:26 2010 +0000
@@ -1,1 +1,104 @@
-string.h
+/*
+* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+* which accompanies this distribution, and is available
+* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+* Definitions for memory and string functions.
+* 
+*
+*/
+
+
+
+
+
+
+
+/**
+ @file
+ @publishedAll
+ @released
+*/
+
+#ifndef _STRING_H_
+#define	_STRING_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "_ansi.h"
+
+#define __need_size_t
+#include <stddef.h>
+
+#ifndef NULL
+#define NULL 0L
+#endif
+
+IMPORT_C void*	memchr		(const void*, int, size_t);
+IMPORT_C int 	memcmp		(const void*, const void*, size_t);
+IMPORT_C void*	memcpy		(void* dst, const void* src, size_t);
+IMPORT_C void*	_e32memcpy	(void* dst, const void* src, size_t);
+IMPORT_C void*	memmove		(void*, const void*, size_t);
+IMPORT_C void*	memset		(void*, int, size_t);
+IMPORT_C char*	strcat		(char *, const char *);
+IMPORT_C wchar_t* wcscat	(wchar_t *, const wchar_t *);
+IMPORT_C char*	strchr		(const char *, int);
+IMPORT_C int	strcmp		(const char *, const char *);
+IMPORT_C int	wcscmp		(const wchar_t *, const wchar_t *);
+IMPORT_C int	strcoll		(const char *, const char *);
+IMPORT_C char*	strcpy		(char *, const char *);
+IMPORT_C wchar_t* wcscpy	(wchar_t *, const wchar_t *);
+IMPORT_C size_t	strcspn		(const char *, const char *);
+IMPORT_C char*	strerror	(int);
+IMPORT_C size_t	strlen		(const char *);
+IMPORT_C size_t	wcslen		(const wchar_t *);
+IMPORT_C char*	strncat		(char *, const char *, size_t);
+IMPORT_C int	strncmp		(const char *, const char *, size_t);
+IMPORT_C char*	strncpy		(char *, const char *, size_t);
+IMPORT_C char*	strpbrk		(const char *, const char *);
+IMPORT_C char*	strrchr		(const char *, int);
+IMPORT_C size_t	strspn		(const char *, const char *);
+IMPORT_C char*	strstr		(const char *, const char *);
+IMPORT_C size_t	strxfrm		(char *, const char *, size_t);
+
+#ifndef _REENT_ONLY
+IMPORT_C char*	strtok		(char *, const char *);
+#endif
+
+IMPORT_C char*	strtok_r	(char *, const char *, char **);
+
+/**
+EPOC32 bonus functions - _STRICT_ANSI 
+*/
+IMPORT_C int	strcasecmp	(const char *, const char *);
+IMPORT_C char*	strdup		(const char *);
+IMPORT_C wchar_t*	wcsdup		(const wchar_t *);
+IMPORT_C int	strncasecmp	(const char *, const char *, size_t);
+IMPORT_C char 	*rindex		(const char *, int);
+IMPORT_C char 	*index		(const char *, int);
+
+#ifndef _STRICT_ANSI
+int	 bcmp		(const char *, const char *, size_t);
+void	 bcopy		(const char *src, char *dst, size_t);
+void	 bzero		(char *, size_t);
+int	 ffs		(int);
+void	*memccpy	(void*, const void*, int, size_t);
+char 	*strsep		(char **, const char *);
+void	 swab		(const char *, char *, size_t);
+#endif /* ! _STRICT_ANSI */
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* _STRING_H_ */