aboutsummaryrefslogtreecommitdiffstats
path: root/snprintf-imp.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2002-08-28 21:04:11 +0000
committerJörg Mayer <jmayer@loplof.de>2002-08-28 21:04:11 +0000
commit7c4176d8688d6642026d3d322570663c9655c7db (patch)
treefb24347c14c65d6b8d7f7e93e4060abbb7217e0c /snprintf-imp.h
parent48be4e530d6635dbf1ef1dafa984c2060f3caa8a (diff)
Removed trailing whitespaces from .h and .c files using the
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
Diffstat (limited to 'snprintf-imp.h')
-rw-r--r--snprintf-imp.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/snprintf-imp.h b/snprintf-imp.h
index 3a374bf539..4f3b0860e2 100644
--- a/snprintf-imp.h
+++ b/snprintf-imp.h
@@ -1,27 +1,27 @@
/*
- * $Id: snprintf-imp.h,v 1.3 2000/08/11 22:03:03 guy Exp $
+ * $Id: snprintf-imp.h,v 1.4 2002/08/28 21:00:41 jmayer Exp $
*/
/*
Unix snprintf implementation.
Version 1.2
-
+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
It can be redistribute also under the terms of GNU Library General
Public License.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
+
Revision History:
1.2:
@@ -74,7 +74,7 @@ Alain Magloire: alainm@rcsm.ee.mcgill.ca
*/
-/*
+/*
* For the FLOATING POINT FORMAT :
* the challenge was finding a way to
* manipulate the Real numbers without having
@@ -90,24 +90,24 @@ Alain Magloire: alainm@rcsm.ee.mcgill.ca
fraction = b(1)*10^-1 + b(2)*10^-2 + ...
where:
- 0 <= a(i) => 9
- 0 <= b(i) => 9
-
+ 0 <= a(i) => 9
+ 0 <= b(i) => 9
+
from then it was simple math
*/
/*
* size of the buffer for the integral part
- * and the fraction part
+ * and the fraction part
*/
#define MAX_INT 99 + 1 /* 1 for the null */
#define MAX_FRACT 29 + 1
-/*
+/*
* numtoa() uses PRIVATE buffers to store the results,
* So this function is not reentrant
*/
-#define itoa(n) numtoa(n, 10, 0, (char **)0)
+#define itoa(n) numtoa(n, 10, 0, (char **)0)
#define otoa(n) numtoa(n, 8, 0, (char **)0)
#define htoa(n) numtoa(n, 16, 0, (char **)0)
#define dtoa(n, p, f) numtoa(n, 10, p, f)
@@ -207,7 +207,7 @@ struct DATA {
if ((p)->space == FOUND && (d) > 0.) \
PUT_CHAR(' ', p)
-/* pad right */
+/* pad right */
#define PAD_RIGHT(p) \
if ((p)->width > 0 && (p)->justify != LEFT) \
for (; (p)->width > 0; (p)->width--) \