home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Game Guide / AmigaGameGuide_CD.iso / PC / Tools / chunker / source / bfn.h < prev    next >
C/C++ Source or Header  |  1977-12-31  |  390b  |  24 lines

  1. /*************************************************************************
  2.  *
  3.  * Chunker/DeChunker
  4.  *
  5.  * Copyright ©1995 Lee Kindness
  6.  * cs2lk@scms.rgu.ac.uk
  7.  *
  8.  * bfn.h
  9.  */
  10.  
  11. #ifndef __BFN_H__
  12. #define __BFN_H__
  13.  
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <ctype.h>
  18. #include "machine.h"
  19.  
  20. char *BuildFName(char *base, long *num);
  21. void FreeFName(char *fname);
  22.  
  23. #endif
  24.