home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / rom / dos / splitname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-27  |  1.0 KB  |  58 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: splitname.c,v 1.2 1997/01/27 00:36:32 ldp Exp $
  4.  
  5.     Desc:
  6.     Lang: english
  7. */
  8. #include "dos_intern.h"
  9.  
  10. /*****************************************************************************
  11.  
  12.     NAME */
  13. #include <proto/dos.h>
  14.  
  15.     AROS_LH5(WORD, SplitName,
  16.  
  17. /*  SYNOPSIS */
  18.     AROS_LHA(STRPTR, name, D1),
  19.     AROS_LHA(ULONG , seperator, D2),
  20.     AROS_LHA(STRPTR, buf, D3),
  21.     AROS_LHA(LONG  , oldpos, D4),
  22.     AROS_LHA(LONG  , size, D5),
  23.  
  24. /*  LOCATION */
  25.     struct DosLibrary *, DOSBase, 69, Dos)
  26.  
  27. /*  FUNCTION
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.  
  41.     INTERNALS
  42.  
  43.     HISTORY
  44.     27-11-96    digulla automatically created from
  45.                 dos_lib.fd and clib/dos_protos.h
  46.  
  47. *****************************************************************************/
  48. {
  49.     AROS_LIBFUNC_INIT
  50.     AROS_LIBBASE_EXT_DECL(struct DosLibrary *,DOSBase)
  51.     extern void aros_print_not_implemented (char *);
  52.  
  53.     aros_print_not_implemented ("SplitName");
  54.  
  55.     return -1;
  56.     AROS_LIBFUNC_EXIT
  57. } /* SplitName */
  58.