Differences From Artifact [ae215f9af5]:
- File src/printf.c — part of check-in [0421c136f2] at 2013-01-27 11:24:02 on branch trunk — Typo fixes from Edward Berner. (user: stephan size: 31047) [more...]
To Artifact [eda142ab1e]:
- File src/printf.c — part of check-in [afffe48643] at 2013-01-30 13:10:02 on branch trunk — Make sure that "fossil_strcmp" is used everywhere in stead of "strcmp": The "strcmp" function from the C library is not usable in all situations, e.g. with --static on Linux Do an #undef in printf.c, preventing that the fossil_strcmp function is optimized for non-null arguments. (user: jan.nijtmans size: 31174) [more...]
| ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + + + + + | ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ******************************************************************************* ** ** An implementation of printf() with extra conversion fields. */ /* prevent "fossil_strcmp" to be optimized using the assumption * that its arguments cannot be NULL */ #undef fossil_strcmp #include "config.h" #include "printf.h" /* ** Conversion types fall into various categories as defined by the ** following enumeration. */ |
| ︙ |