/* * C C P E X T . C * * This is a test file for doing a ccp extension. This routine * is called as :ccp.ext, and is loaded to * address 0x6000. * * This is written in Manx Aztec C II version 1.05g * * * Written 9/1986 by Michael D. Kersenbrock */ main() { /* dummy */ } ccpext(cmdline,hbuffer) char *cmdline; /* points to command line (at the byte count) */ char *hbuffer; /* simple defn for now, make a struct pointer later */ { printf("\nCommand line: %s\n",cmdline+1); return(0); /* zero should keep history mechanism active */ }