uniset

Sets all characters in a string to a specified character

Local Servers:nonblocking
Remote Servers:N/A
NetWare Server:4.x, 5.x, 6.x
Platform:NLM, Windows NT, Windows95, Windows 98
Library:Cross-Platform Localization (LOC*.*)
Service:Unicode

Syntax

   #include <unicode.h> 
    
   N_EXTERN_LIBRARY(punicode) uniset  ( 
      punicode   s,  
      unicode    c);
   

Pascal Syntax

   uses netwin32 
    
   Function uniset 
     (s : punicode;         
      c : unicode         
   ) : punicode;
   

Parameters

s
(OUT) Points to the string to modify.
c
(IN) Specifies the fill character.

Return Values

Returns a pointer to the s parameter.

Remarks

uniset quits when it finds the terminating NULL character.

uniset corresponds to the C strset function.

For sample code, see Section 3.26, Example: uniset.

See Also

uninset