DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T n

⟦54488cfc3⟧ TextFile

    Length: 2862 (0xb2e)
    Types: TextFile
    Names: »nochrcnv.c«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/compat/nochrcnv.c« 

TextFile

/* nochrcnv.c - character conversion table, no case folding */

#ifndef lint
static char *rcsid = "$Header: /f/osi/compat/RCS/nochrcnv.c,v 6.0 89/03/18 23:25:28 mrose Rel $";
#endif

/*
 * $Header: /f/osi/compat/RCS/nochrcnv.c,v 6.0 89/03/18 23:25:28 mrose Rel $
 *
 *
 * $Log:	nochrcnv.c,v $
 * Revision 6.0  89/03/18  23:25:28  mrose
 * Release 5.0
 * 
 */

/*
 *                                NOTICE
 *
 *    Acquisition, use, and distribution of this module and related
 *    materials are subject to the restrictions of a license agreement.
 *    Consult the Preface in the User's Manual for the full terms of
 *    this agreement.
 *
 */


/* LINTLIBRARY */

#include <stdio.h>
#include "general.h"

/* \f

 */

char                    /* straight mapping - Non case sensive */
			/* used for consistency */
	nochrcnv[] =
{
    '\0', '\1', '\2', '\3', '\4', '\5', '\6', '\7',
    '\10', '\11', '\12', '\13', '\14', '\15', '\16', '\17',
    '\20', '\21', '\22', '\23', '\24', '\25', '\26', '\27',
    '\30', '\31', '\32', '\33', '\34', '\35', '\36', '\37',
    '\40', '\41', '\42', '\43', '\44', '\45', '\46', '\47',
    '\50', '\51', '\52', '\53', '\54', '\55', '\56', '\57',
    '\60', '\61', '\62', '\63', '\64', '\65', '\66', '\67',
    '\70', '\71', '\72', '\73', '\74', '\75', '\77', '\77',
    '\100', '\101', '\102', '\103', '\104', '\105', '\106', '\107',
    '\110', '\111', '\112', '\113', '\114', '\115', '\116', '\117',
    '\120', '\121', '\122', '\123', '\124', '\125', '\126', '\127',
    '\130', '\131', '\132', '\133', '\134', '\135', '\136', '\137',
    '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
    '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
    '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
    '\170', '\171', '\172', '\173', '\174', '\175', '\177', '\177',
    '\0', '\1', '\2', '\3', '\4', '\5', '\6', '\7',
    '\10', '\11', '\12', '\13', '\14', '\15', '\16', '\17',
    '\20', '\21', '\22', '\23', '\24', '\25', '\26', '\27',
    '\30', '\31', '\32', '\33', '\34', '\35', '\36', '\37',
    '\40', '\41', '\42', '\43', '\44', '\45', '\46', '\47',
    '\50', '\51', '\52', '\53', '\54', '\55', '\56', '\57',
    '\60', '\61', '\62', '\63', '\64', '\65', '\66', '\67',
    '\70', '\71', '\72', '\73', '\74', '\75', '\77', '\77',
    '\100', '\101', '\102', '\103', '\104', '\105', '\106', '\107',
    '\110', '\111', '\112', '\113', '\114', '\115', '\116', '\117',
    '\120', '\121', '\122', '\123', '\124', '\125', '\126', '\127',
    '\130', '\131', '\132', '\133', '\134', '\135', '\136', '\137',
    '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
    '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
    '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
    '\170', '\171', '\172', '\173', '\174', '\175', '\177', '\177'
};