Home
last modified time | relevance | path

Searched refs:GET2BYTENUM (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dtmplout.c901 #define GET2BYTENUM( p ) (( *p - '0' ) * 10 + ( *(p+1) - '0' )) macro
934 t.tm_year = GET2BYTENUM( p ); p += 2; in time2text()
937 t.tm_year += GET2BYTENUM( p ); p += 2; in time2text()
946 t.tm_mon = GET2BYTENUM( p ) - 1; p += 2; in time2text()
947 t.tm_mday = GET2BYTENUM( p ); p += 2; in time2text()
948 t.tm_hour = GET2BYTENUM( p ); p += 2; in time2text()
949 t.tm_min = GET2BYTENUM( p ); p += 2; in time2text()
950 t.tm_sec = GET2BYTENUM( p ); p += 2; in time2text()