]> git.sur5r.net Git - cc65/commitdiff
Added space after function name.
authorIrgendwerA8 <c.krueger.b@web.de>
Fri, 29 Mar 2019 21:47:42 +0000 (22:47 +0100)
committerOliver Schmidt <ol.sc@web.de>
Fri, 29 Mar 2019 21:53:04 +0000 (22:53 +0100)
doc/funcref.sgml
include/cc65.h

index c715b3a2abfc1f1168a4444b26906cd5397459da..89a8eb13c8b6635cdd66a64aea94a18c01c33849 100644 (file)
@@ -5565,7 +5565,7 @@ memory allocated for the driver.
 <descrip>
 <tag/Function/Multiplies argument by 20.
 <tag/Header/<tt/<ref id="cc65.h" name="cc65.h">/
-<tag/Declaration/<tt/unsigned int __fastcall__ mul20(unsigned char value);/
+<tag/Declaration/<tt/unsigned int __fastcall__ mul20 (unsigned char value);/
 <tag/Description/Speed optimized function to multiply an 8 bit unsigned value by 20 to get a 16 bit result.
 <tag/Availability/cc65
 </descrip>
@@ -5577,7 +5577,7 @@ memory allocated for the driver.
 <descrip>
 <tag/Function/Multiplies argument by 40.
 <tag/Header/<tt/<ref id="cc65.h" name="cc65.h">/
-<tag/Declaration/<tt/unsigned int __fastcall__ mul40(unsigned char value);/
+<tag/Declaration/<tt/unsigned int __fastcall__ mul40 (unsigned char value);/
 <tag/Description/Speed optimized function to multiply an 8 bit unsigned value by 40 to get a 16 bit result.
 <tag/Availability/cc65
 </descrip>
index e596e93df070e6415a7fada387cb1904a22583ef..a30bad24713c425f96b95a2e5ec3ed6fea7654d0 100644 (file)
@@ -75,12 +75,12 @@ unsigned long __fastcall__ umul16x8r32 (unsigned lhs, unsigned char rhs);
 unsigned long __fastcall__ umul16x16r32 (unsigned lhs, unsigned rhs);
 /* Multiplicate two unsigned 16 bit to yield an unsigned 32 bit result */
 
-unsigned int __fastcall__ mul20(unsigned char value);
+unsigned int __fastcall__ mul20 (unsigned char value);
 /* Multiply an 8 bit unsigned value by 20 and return the 16 bit unsigned
 ** result
 */
 
-unsigned int __fastcall__ mul40(unsigned char value);
+unsigned int __fastcall__ mul40 (unsigned char value);
 /* Multiply an 8 bit unsigned value by 40 and return the 16 bit unsigned
 ** result
 */