home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 6.13 STATIC Functions (use in conjunction with CHP0613A.PRG)
- Author: Greg Lief
- 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 Whatever
- Center(17, "This is a test")
- return nil
-
- static function center(row, msg)
- @ row, int((maxcol() + 1 - len(msg)) / 2) say msg
- return nil
-
- //───── CHP0613B.PRG
-