home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mm / mm-ccmd-0.91-20031009.tar.gz / mm-ccmd-0.91-20031009.tar / work / ccmd / cmfbrk.unx < prev    next >
Text File  |  1990-12-18  |  708b  |  24 lines

  1. /*
  2.  Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  the City of New York.  Permission is granted to any individual or
  4.  institution to use, copy, or redistribute this software so long as it
  5.  is not sold for profit, provided this copyright notice is retained.
  6.  
  7.  Author: Howie Kaye
  8. */
  9.  
  10. /*
  11.  * break table for filenames under Unix
  12.  */
  13.                     /* standard break table */
  14. static brktab filbrk = {        /* all valid chars for filenames */
  15.   {                    /* alphanums, "~#/_-\[]" */
  16.     0xff, 0xff, 0xff, 0xff, 0xef, 0xd8, 0x00, 0x3f, 
  17.     0x80, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x1d, 
  18.   },
  19.   {
  20.     0xff, 0xff, 0xff, 0xff, 0xef, 0xd8, 0x00, 0x3f, 
  21.     0x80, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x1d, 
  22.   }
  23. };
  24.