view lphobos/std/c/string.d @ 1351:8d501abecd24

Initial (but disabled) fix for ticket #294 , the actual part that fixes the bug is in a #if 0 block as I'm afraid it will cause regressions. I'm most likely not going to be around tonight, and maybe not tomorrow as well, so I'm pushing it in case someone wants to run some serious testing/investigate the problem noted in llvmhelpers.cpp : realignOffset .
author Tomas Lindquist Olsen <tomas.l.olsen gmail com>
date Thu, 14 May 2009 17:20:17 +0200
parents c53b6e3fe49a
children
line wrap: on
line source


/**
 * C's &lt;string.h&gt;
 * Authors: Walter Bright, Digital Mars, www.digitalmars.com
 * License: Public Domain
 * Macros:
 *	WIKI=Phobos/StdCString
 */

module std.c.string;

extern (C):

void* memcpy(void* s1, void* s2, size_t n);	///
void* memmove(void* s1, void* s2, size_t n);	///
char* strcpy(char* s1, char* s2);		///
char* strncpy(char* s1, char* s2, size_t n);	///
char* strncat(char*  s1, char*  s2, size_t n);	///
int strcoll(char* s1, char* s2);		///
int strncmp(char* s1, char* s2, size_t n);	///
size_t strxfrm(char*  s1, char*  s2, size_t n);	///
void* memchr(void* s, int c, size_t n);		///
char* strchr(char* s, int c);			///
size_t strcspn(char* s1, char* s2);		///
char* strpbrk(char* s1, char* s2);		///
char* strrchr(char* s, int c);			///
size_t strspn(char* s1, char* s2);		///
char* strstr(char* s1, char* s2);		///
char* strtok(char*  s1, char*  s2);		///
void* memset(void* s, int c, size_t n);		///
char* strerror(int errnum);			///
size_t strlen(char* s);				///
int strcmp(char* s1, char* s2);			///
char* strcat(char* s1, char* s2);		///
int memcmp(void* s1, void* s2, size_t n);	///

version (Windows)
{
    int memicmp(char* s1, char* s2, size_t n);	///
}