home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 91 / af091a.adf / af91a3.lzx / prgs / ExternFunc / string.c < prev    next >
Text File  |  2019-03-25  |  101b  |  10 lines

  1. /*
  2. ** Return a string to an ACE program.
  3. */
  4. char buf[] = "Hello ACE!";
  5.  
  6. char *foo()
  7. {
  8.     return buf;
  9. }
  10.