Everything

swscanf


指定した記憶域からデータを入力し、書式に従って変換します。

[指定形式]

#include <stdio.h>

#include <wchar.h>

long swscanf(const wchar_t *restrict s, const wchar_t *restrict control [, ptr] ...);

[引数]

s 入力するデータがある記憶域

control 書式を示すワイド文字列へのポインタ

ptr,... 入力変換したデータを格納する記憶域へのポインタ

[戻り値]

正常:入力変換に成功したデータの個数

異常:EOF

[備考]

swscanf関数はsscanf関数のワイド文字対応版です。