Ignore:
Timestamp:
Mar 27, 2002, 9:27:02 PM (23 years ago)
Author:
umoeller
Message:

Sources as of 0.9.18.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/stringh.c

    r147 r152  
    379379 *      including the null terminator.
    380380 *
    381  *      Returns 0 if pcsz is NULL or points to a
    382  *      null character.
     381 *      Returns 0 only if pcsz is NULL. If pcsz
     382 *      points to a null character, this returns 1.
    383383 *
    384384 *@@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
    385386 */
    386387
    387388ULONG strhSize(PCSZ pcsz)
    388389{
    389     if (pcsz && *pcsz)
     390    if (pcsz) //  && *pcsz) // V0.9.18 (2002-03-27) [umoeller]
    390391        return (strlen(pcsz) + 1);
    391392
Note: See TracChangeset for help on using the changeset viewer.