Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***
*wcsset.c - sets all characters of wchar_t string to given character * * Copyright (c) 1985-2001, Microsoft Corporation. All rights reserved. * *Purpose: * defines _wcsset() - sets all of the characters in a string (except * the L'\0') equal to a given character (wide-characters). * *Revision History: * 09-09-91 ETC Created from strset.c. * 04-07-92 KRS Updated and ripped out _INTL switches. * 04-06-93 SKS Replace _CRTAPI* with __cdecl * 02-07-94 CFW POSIXify. * *******************************************************************************/
#ifndef _POSIX_
#include <cruntime.h>
#include <string.h>
#if defined(_M_IA64)
#pragma warning(disable:4163)
#pragma function(_wcsset)
#endif
/***
*wchar_t *_wcsset(string, val) - sets all of string to val (wide-characters) * *Purpose: * Sets all of wchar_t characters in string (except the terminating '/0' * character) equal to val (wide-characters). * * *Entry: * wchar_t *string - string to modify * wchar_t val - value to fill string with * *Exit: * returns string -- now filled with val's * *Uses: * *Exceptions: * *******************************************************************************/
wchar_t * __cdecl _wcsset ( wchar_t * string, wchar_t val ) { wchar_t *start = string;
while (*string) *string++ = (wchar_t)val;
return(start); }
#endif /* _POSIX_ */
|