2 * MSVCRT string functions
4 * Copyright 1996,1998 Marcus Meissner
5 * Copyright 1996 Jukka Iivonen
6 * Copyright 1997,2000 Uwe Bonnes
7 * Copyright 2000 Jon Griffiths
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define _ISOC99_SOURCE
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt
);
33 /* INTERNAL: MSVCRT_malloc() based strndup */
34 char* msvcrt_strndup(const char* buf
, unsigned int size
)
37 unsigned int len
= strlen(buf
), max_len
;
39 max_len
= size
<= len
? size
: len
+ 1;
41 ret
= MSVCRT_malloc(max_len
);
44 memcpy(ret
,buf
,max_len
);
50 /*********************************************************************
54 char* CDECL
_strdup(const char* str
)
58 char * ret
= MSVCRT_malloc(strlen(str
)+1);
59 if (ret
) strcpy( ret
, str
);
65 /*********************************************************************
68 char* CDECL
_strnset(char* str
, int value
, MSVCRT_size_t len
)
76 /*********************************************************************
79 char* CDECL
_strrev(char* str
)
85 for (p1
= str
, p2
= str
+ strlen(str
) - 1; p2
> p1
; ++p1
, --p2
)
95 /*********************************************************************
98 char* CDECL
_strset(char* str
, int value
)
107 /*********************************************************************
110 char * CDECL
MSVCRT_strtok( char *str
, const char *delim
)
112 thread_data_t
*data
= msvcrt_get_thread_data();
116 if (!(str
= data
->strtok_next
)) return NULL
;
118 while (*str
&& strchr( delim
, *str
)) str
++;
119 if (!*str
) return NULL
;
121 while (*str
&& !strchr( delim
, *str
)) str
++;
122 if (*str
) *str
++ = 0;
123 data
->strtok_next
= str
;
128 /*********************************************************************
131 void CDECL
MSVCRT__swab(char* src
, char* dst
, int len
)
135 len
= (unsigned)len
>> 1;
147 /*********************************************************************
150 double CDECL
MSVCRT_atof( const char *str
)
155 /*********************************************************************
158 double CDECL
MSVCRT_strtod( const char *str
, char **end
)
160 return strtod( str
, end
);
163 /*********************************************************************
166 int CDECL
MSVCRT_strcoll( const char* str1
, const char* str2
)
168 /* FIXME: handle Windows locale */
169 return strcoll( str1
, str2
);
172 /*********************************************************************
175 MSVCRT_size_t CDECL
MSVCRT_strxfrm( char *dest
, const char *src
, MSVCRT_size_t len
)
177 /* FIXME: handle Windows locale */
178 return strxfrm( dest
, src
, len
);
181 /*********************************************************************
182 * _stricoll (MSVCRT.@)
184 int CDECL
MSVCRT__stricoll( const char* str1
, const char* str2
)
186 /* FIXME: handle collates */
187 TRACE("str1 %s str2 %s\n", debugstr_a(str1
), debugstr_a(str2
));
188 return lstrcmpiA( str1
, str2
);
191 /********************************************************************
192 * _atoldbl (MSVCRT.@)
194 int CDECL
MSVCRT__atoldbl(_LDOUBLE
* value
, char * str
)
196 /* FIXME needs error checking for huge/small values */
198 TRACE("str %s value %p\n",str
,value
);
199 value
->x
= strtold(str
,0);
201 FIXME("stub, str %s value %p\n",str
,value
);