home *** CD-ROM | disk | FTP | other *** search
- *******************
-
- FUNCTION Hexideci
-
- PARAMETERS _thenum
-
- IF EMPTY(PCOUNT())
- RETURN(-1)
- ENDIF
- IF TYPE("_thenum") != "C"
- RETURN(-1) && For the Larry Josephson's of
- ELSE && the world. Argh!!!
- _thenum = LTRIM(TRIM(_thenum)) && Just in case!
- ENDIF
-
- PRIVATE _retval, _count, _qaz, _thechar
-
- _retval = 0
- _count = 1
- FOR _qaz = LEN(_thenum) TO 1 STEP -1
- _thechar = AT(SUBSTR(_thenum, _qaz, 1), "0123456789ABCDEF") - 1
- _retval = _retval + (_thechar * ( 16 ** (_count - 1) ))
- _count = _count + 1
- NEXT
- RETURN(WHOLENUM(_retval))
-
- * End of File