home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / System / MorphOS / Developer / emulexamples / library / skeleton / libfunctions.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-02  |  860 b   |  22 lines

  1. #include    "libdata.h"
  2.  
  3. /***********************************************************************/
  4. /***********************************************************************/
  5. /***********************************************************************/
  6. /***********************************************************************/
  7. /***********************************************************************/
  8. /***********************************************************************/
  9. /***********************************************************************/
  10. /***********************************************************************/
  11. /***********************************************************************/
  12.  
  13. void    LIB_PPCPrintString(void)
  14. {
  15. char        *MyString=(char*) REG_A0;
  16. struct LibBase    *MyLibBase=(struct LibBase*) REG_A6;
  17.  
  18.   dprintf("LIB_Test: <%s>\n",
  19.           MyString);
  20.  
  21. }
  22.