From e3c0147f1840279695fb371f17114bfafa97b7be Mon Sep 17 00:00:00 2001 From: Marcus Comstedt <marcus@mc.pp.se> Date: Mon, 25 May 1998 22:54:29 +0200 Subject: [PATCH] Added documentation for sscanf("%F"). Rev: tutorial/tutorial.wmml:1.87 --- tutorial/tutorial.wmml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml index 31502b10f4..56cc9c71fa 100644 --- a/tutorial/tutorial.wmml +++ b/tutorial/tutorial.wmml @@ -3154,6 +3154,8 @@ to the following table: <tr valign=top><td> %f </td><td> reads a float </td></tr> <tr valign=top><td> %c </td><td> matches one char and returns it as an integer </td></tr> <tr valign=top><td> %2c </td><td> matches two chars and returns them as an integer (short) </td></tr> +<tr valign=top><td> %4F </td><td> matches four chars and returns them as a float (IEEE single precision) </td></tr> +<tr valign=top><td> %8F </td><td> matches eigth chars and returns them as a float (IEEE double precision) </td></tr> <tr valign=top><td> %s </td><td> reads a string. If followed by %d, %s will read any non-numerical characters. If followed by a %[], %s will read any characters not present in the set. If followed by normal text, %s will match -- GitLab