Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_SRC_3_19910112 - unix-stuff/cmfbrk.dos
There is 1 other file named cmfbrk.dos in the archive. Click here to see a list.
/*
 Author: Howie Kaye

 Columbia University Center for Computing Activities, July 1986.
 Copyright (C) 1986, 1987, Trustees of Columbia University in the City
 of New York.  Permission is granted to any individual or institution
 to use, copy, or redistribute this software so long as it is not sold
 for profit, provided this copyright notice is retained.
*/

/*
 * break table for filenames under MSDOS
 */
					/* standard break table */
static brktab filbrk = {		/* all valid chars for filenames */
  {					/* alphanums, "~", "#", "/" */
    0xff,  0xff,  0xff,  0xff,  0xf7,  0xc8,  0x00,  0x3f,  
    0x80,  0x00,  0x00,  0x09,  0x80,  0x00,  0x00,  0x1d,  
  },
  {
    0xff,  0xff,  0xff,  0xff,  0xf7,  0xc8,  0x00,  0x3f,  
    0x80,  0x00,  0x00,  0x09,  0x80,  0x00,  0x00,  0x1d,  
  }
};


					/* wild card break table */
static brktab filwldtab = {		/* all valid chars for filenames */
  {					/* alphanums, "~", "#", "/" */
    0xff,  0xff,  0xff,  0xff,  0xfb,  0xdc,  0x00,  0x3f,  
    0x80,  0x00,  0x00,  0x17,  0x80,  0x00,  0x00,  0x1f,  
  },
  {
    0xff,  0xff,  0xff,  0xff,  0xfb,  0xdc,  0x00,  0x3f,  
    0x80,  0x00,  0x00,  0x17,  0x80,  0x00,  0x00,  0x1f,  
  }
};

					/* regex break tab */
static brktab filregtab = {
  {
    0xff,  0xff,  0xff,  0xff,  0xf7,  0xfc,  0x00,  0x3f,  
    0x80,  0x00,  0x00,  0x05,  0x80,  0x00,  0x00,  0x1f  
  },
  {
    0xff,  0xff,  0xff,  0xff,  0xf7,  0xcc,  0x00,  0x3e,  
    0x80,  0x00,  0x00,  0x01,  0x80,  0x00,  0x00,  0x1f  
  },
};