home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 24.11 Bin2ul()
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- //───── NOTE: must compile with the /N option!
-
- function bin2ul(cLong)
- LOCAL jj:=Bin2l(cLong)
- if jj < 0
- jj := abs(jj)+ 2147483647
- endif
- return jj
-
- // end of file CHP2411.PRG
-