Changeset 152 for trunk/src/helpers/stringh.c
- Timestamp:
- Mar 27, 2002, 9:27:02 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/stringh.c
r147 r152 379 379 * including the null terminator. 380 380 * 381 * Returns 0 if pcsz is NULL or points to a382 * null character.381 * Returns 0 only if pcsz is NULL. If pcsz 382 * points to a null character, this returns 1. 383 383 * 384 384 *@@added V0.9.18 (2002-02-13) [umoeller] 385 *@@changed V0.9.18 (2002-03-27) [umoeller]: now returning 1 for ptr to null byte 385 386 */ 386 387 387 388 ULONG strhSize(PCSZ pcsz) 388 389 { 389 if (pcsz && *pcsz)390 if (pcsz) // && *pcsz) // V0.9.18 (2002-03-27) [umoeller] 390 391 return (strlen(pcsz) + 1); 391 392
Note:
See TracChangeset
for help on using the changeset viewer.