scanf.3 (38b5abad06f430cc2f20ee53080f292bd88dcbeb) | scanf.3 (54e4e385de33a961e801ceeea8146437e25edd88) |
---|---|
1.\" Copyright (c) 1990, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software contributed to Berkeley by 5.\" Chris Torek and the American National Standards Committee X3, 6.\" on Information Processing Systems. 7.\" 8.\" Redistribution and use in source and binary forms, with or without --- 38 unchanged lines hidden (view full) --- 47.Nm vsscanf , 48.Nm vfscanf 49.Nd input format conversion 50.Sh LIBRARY 51.Lb libc 52.Sh SYNOPSIS 53.In stdio.h 54.Ft int | 1.\" Copyright (c) 1990, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software contributed to Berkeley by 5.\" Chris Torek and the American National Standards Committee X3, 6.\" on Information Processing Systems. 7.\" 8.\" Redistribution and use in source and binary forms, with or without --- 38 unchanged lines hidden (view full) --- 47.Nm vsscanf , 48.Nm vfscanf 49.Nd input format conversion 50.Sh LIBRARY 51.Lb libc 52.Sh SYNOPSIS 53.In stdio.h 54.Ft int |
55.Fn scanf "const char *format" ... | 55.Fn scanf "const char * restrict format" ... |
56.Ft int | 56.Ft int |
57.Fn fscanf "FILE *stream" "const char *format" ... | 57.Fn fscanf "FILE * restrict stream" "const char * restrict format" ... |
58.Ft int | 58.Ft int |
59.Fn sscanf "const char *str" "const char *format" ... | 59.Fn sscanf "const char * restrict str" "const char * restrict format" ... |
60.In stdarg.h 61.Ft int | 60.In stdarg.h 61.Ft int |
62.Fn vscanf "const char *format" "va_list ap" | 62.Fn vscanf "const char * restrict format" "va_list ap" |
63.Ft int | 63.Ft int |
64.Fn vsscanf "const char *str" "const char *format" "va_list ap" | 64.Fn vsscanf "const char * restrict str" "const char * restrict format" "va_list ap" |
65.Ft int | 65.Ft int |
66.Fn vfscanf "FILE *stream" "const char *format" "va_list ap" | 66.Fn vfscanf "FILE * restrict stream" "const char * restrict format" "va_list ap" |
67.Sh DESCRIPTION 68The 69.Fn scanf 70family of functions scans input according to a 71.Fa format 72as described below. 73This format may contain 74.Em conversion specifiers ; --- 455 unchanged lines hidden --- | 67.Sh DESCRIPTION 68The 69.Fn scanf 70family of functions scans input according to a 71.Fa format 72as described below. 73This format may contain 74.Em conversion specifiers ; --- 455 unchanged lines hidden --- |