From 8f3278e62e9463e255aa6064a01f33fa4b0b8238 Mon Sep 17 00:00:00 2001 From: leitner Date: Sun, 4 May 2003 16:21:28 +0000 Subject: [PATCH] add man page for scan_longlong --- scan/scan_long.3 | 2 +- scan/scan_longlong.3 | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 scan/scan_longlong.3 diff --git a/scan/scan_long.3 b/scan/scan_long.3 index 401cd7c..a3d2d8b 100644 --- a/scan/scan_long.3 +++ b/scan/scan_long.3 @@ -6,7 +6,7 @@ scan_long \- parse an long integer in decimal ASCII representation int \fBscan_long\fP(const char *\fIsrc\fR,long *\fIdest\fR); .SH DESCRIPTION -scan_long parses an long integer in decimal ASCII representation +scan_long parses a long integer in decimal ASCII representation from \fIsrc\fR and writes the result into \fIdest\fR. It returns the number of bytes read from \fIsrc\fR. .SH "SEE ALSO" diff --git a/scan/scan_longlong.3 b/scan/scan_longlong.3 new file mode 100644 index 0000000..3b35ba7 --- /dev/null +++ b/scan/scan_longlong.3 @@ -0,0 +1,13 @@ +.TH scan_longlong 3 +.SH NAME +scan_longlong \- parse an long integer in decimal ASCII representation +.SH SYNTAX +.B #include + +int \fBscan_longlong\fP(const char *\fIsrc\fR,long long *\fIdest\fR); +.SH DESCRIPTION +scan_longlong parses a long long integer in decimal ASCII representation +from \fIsrc\fR and writes the result into \fIdest\fR. It returns the +number of bytes read from \fIsrc\fR. +.SH "SEE ALSO" +scan_ulonglong(3), fmt_longlong(3)