home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 18.5 Push & pop alias
- 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!
-
- STATIC astack:={}
-
- function pushalias
- Aadd(astack,select())
- return nil
-
- function popalias
- LOCAL x := astack[ len(astack) ]
- Asize(astack, len(astack)-1)
- select (x)
- return nil
-
- // end of file CHP1805.PRG
-