Query: wsscanf
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
wsscanf(3C) Standard C Library Functions wsscanf(3C)NAMEwsscanf - formatted input conversionSYNOPSIS#include<stdio.h> #include <widec.h> int wsscanf(wchar_t *s, const char *format, /* pointer */ ... );DESCRIPTIONThe wsscanf() function reads Process Code characters from the Process Code string s, interprets them according to the format, and stores the results in its arguments. It expects, as arguments, a control string format, and a set of pointer arguments indicating where the con- verted input should be stored. The results are undefined if there are insufficient args for the format. If the format is exhausted while args remain, the excess args are simply ignored. The conversion specifications and behavior of wsscanf() are the same as the regular sscanf(3C) function except that the source is a Process Code string for wsscanf() and on Extended Unix Code (EUC) character string for sscanf(3C).RETURN VALUESUpon successful completion, wsscanf() returns the number of characters matched. Otherwise, it returns a negative value.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------------------------------------+ |ATTRIBUTE TYPE ATTRIBUTE VALUE | |MT-Level MT-Safe | +-----------------------------------------------------------+SEE ALSOwsprintf(3C), printf(3C), scanf(3C), attributes(5) SunOS 5.11 29 Dec 1996 wsscanf(3C)
Related Man Pages |
---|
putws(3c) - opensolaris |
wsncasecmp(3c) - opensolaris |
wsprintf(3c) - opensolaris |
putws(3c) - sunos |
putws(3c) - linux |
Similar Topics in the Unix Linux Community |
---|
sscanf function is failing |
Help with sscanf |
using sscanf |
awk to get lowest & store value from another file... |
Format specifier for sscanf() in C |