/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* eftread.c -- routines for reading .eft files
*
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <time.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
#include <alloca.h>
#include "out.h"
#include "stable.h"
#include "lut.h"
#include "tree.h"
#include "eft.h"
#include "eftread.h"
#include "esclex.h"
#include "version.h"
#include "ptree.h"
/* for uintX_t, htonl(), etc */
#include <inttypes.h>
#ifndef MIN
#define MIN(x, y) ((x) <= (y) ? (x) : (y))
#endif
static int Showheader;
/*
* eftread_showheader -- set showheader flag
*
*/
void
{
Showheader = newval;
}
/*
* eftread_fopen -- fopen an EFT file for reading
*
*/
FILE *
{
int cc;
char *ptr;
return (NULL);
}
return (NULL);
}
return (NULL);
}
if (Showheader)
return (NULL);
}
"this program supports up to %d.%d", fname,
return (NULL);
}
}
return (NULL);
}
/* read in dict strings */
char *dptr;
/* work from end of string array backwards, finding names */
if (*dptr == '\0') {
/* found separator, record string */
}
/* record the first string */
}
char *ptr;
}
}
return (NULL);
}
if (Showheader) {
}
return (tfp);
}