/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (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 1995 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
*/
#include <stdio.h>
#include <exportent.h>
#include <ctype.h>
extern char *strtok();
extern char *strcpy();
static char *skipwhite(char *);
static char *skipnonwhite(char *);
FILE *
setexportent(void)
{
FILE *f;
int fd;
/*
* Create the tab file if it does not exist already
*/
}
} else {
}
if (f == NULL) {
return (NULL);
}
(void)fclose(f);
return (NULL);
}
return (f);
}
void
{
(void) fclose(f);
}
struct exportent *
{
int len;
char *p;
}
return (NULL);
}
}
p = skipnonwhite(line);
if (*p == 0) {
return (&xent);
}
*p++ = 0;
p = skipwhite(p);
if (*p == 0) {
return (&xent);
}
if (*p == '-') {
p++;
}
xent.xent_options = p;
return (&xent);
}
int
{
int len;
char *fname;
int fd;
long pos;
long rempos;
int remlen;
int res;
rempos = 0;
remlen = 0;
if (fd < 0) {
return (-1);
}
return (-1);
}
return (-1);
}
rewind(f);
return (-1);
}
} else {
}
}
rewind(f);
return (-1);
}
return (-1);
}
}
if (remlen == 0) {
/* nothing removed */
res = -1;
} else {
}
return (res < 0 ? -1 : 0);
}
int
{
long pos;
fprintf(f, "\n") > 0 &&
return (0);
}
return (-1);
}
char *
{
char *lp;
char *tok;
int len;
}
return (NULL);
}
return ("");
}
}
}
return (NULL);
}
static char *
{
str++;
}
return (str);
}
static char *
{
str++;
}
return (str);
}