| #
0cf98320 |
| 13-Apr-2021 |
christos <christos@NetBSD.org> |
- fix memory leak - xxx questionable allocation - remove casts - use sizeof(*var) - bcopy -> memcpy/memmove
|
| #
1793b7dd |
| 28-Oct-2004 |
dsl <dsl@NetBSD.org> |
Use (unsigned char) cast to sanitise arguments to ctype functions.
|
| #
d349cd67 |
| 27-Oct-2004 |
dsl <dsl@NetBSD.org> |
Fix a load of international alphabet problems with isxxx() and toupper() Change isspace(*char_ptr) to isspace(*char_ptr & 0xff) so that the correct piece of memory is looked at for the bit mask. gcc
Fix a load of international alphabet problems with isxxx() and toupper() Change isspace(*char_ptr) to isspace(*char_ptr & 0xff) so that the correct piece of memory is looked at for the bit mask. gcc optimises out the '& 0xff' (on i386 at least). Fixes problems found by gcc when the splurious (int) cast is removed from the #defines in ctype.h
show more ...
|
| #
9bc855a9 |
| 23-Apr-2004 |
simonb <simonb@NetBSD.org> |
s/the the/the/ (only in sources that aren't regularly imported from elsewhere).
|
| #
a2ed7b2d |
| 09-Mar-2003 |
lukem <lukem@NetBSD.org> |
use __RCSID()
|
| #
c03a48d6 |
| 13-Jun-2001 |
wiz <wiz@NetBSD.org> |
withough -> without
|
| #
b7108db3 |
| 23-Jan-2001 |
blymn <blymn@NetBSD.org> |
Added check for null args pointer.
|
| #
36483ba9 |
| 20-Jan-2001 |
blymn <blymn@NetBSD.org> |
* Fixed common error in all types code * Removed the args field from types struct and made sure the args in the field are used.
|
| #
41859428 |
| 17-Dec-2000 |
blymn <blymn@NetBSD.org> |
Added early release version of libform - please be gentle.
|