.Dt WSCANF_L 3
.Os
.Sh NAME
-.Nm wscanf_l ,
.Nm fwscanf_l ,
.Nm swscanf_l ,
-.Nm vwscanf_l ,
+.Nm vfwscanf_l ,
.Nm vswscanf_l ,
-.Nm vfwscanf_l
+.Nm vwscanf_l ,
+.Nm wscanf_l
.Nd wide character input format conversion
.Sh LIBRARY
.Lb libc
.In wchar.h
.In xlocale.h
.Ft int
-.Fn wscanf_l "locale_t loc" "const wchar_t * restrict format" ...
+.Fo fwscanf_l
+.Fa "FILE * restrict stream"
+.Fa "locale_t loc"
+.Fa "const wchar_t * restrict format"
+.Fa ...
+.Fc
.Ft int
-.Fn fwscanf_l "FILE * restrict stream" "locale_t loc" "const wchar_t * restrict format" ...
+.Fo swscanf_l
+.Fa "const wchar_t * restrict str"
+.Fa "locale_t loc"
+.Fa "const wchar_t * restrict format"
+.Fa ...
+.Fc
.Ft int
-.Fn swscanf_l "const wchar_t * restrict str" "locale_t loc" "const wchar_t * restrict format" ...
+.Fo wscanf_l
+.Fa "locale_t loc"
+.Fa "const wchar_t * restrict format"
+.Fa ...
+.Fc
.In stdarg.h
+.In xlocale.h
.Ft int
-.Fn vwscanf_l "locale_t loc" "const wchar_t * restrict format" "va_list ap"
+.Fo vfwscanf_l
+.Fa "FILE * restrict stream"
+.Fa "locale_t loc"
+.Fa "const wchar_t * restrict format"
+.Fa "va_list ap"
+.Fc
.Ft int
-.Fn vswscanf_l "const wchar_t * restrict str" "locale_t loc" "const wchar_t * restrict format" "va_list ap"
+.Fo vswscanf_l
+.Fa "const wchar_t * restrict str"
+.Fa "locale_t loc"
+.Fa "const wchar_t * restrict format"
+.Fa "va_list ap"
+.Fc
.Ft int
-.Fn vfwscanf_l "FILE * restrict stream" "locale_t loc" "const wchar_t * restrict format" "va_list ap"
+.Fo vwscanf_l
+.Fa "locale_t loc"
+.Fa "const wchar_t * restrict format"
+.Fa "va_list ap"
+.Fc
.Sh DESCRIPTION
The
.Fn wscanf_l ,