systems.c (dd49e719c180b3586267d3eae455da974238d57b) systems.c (5284761414ce1ef5f00cb7e3f93076682b591a5e)
1/*
2 * System configuration routines
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
7 *
8 * Redistribution and use in source and binary forms are permitted

--- 299 unchanged lines hidden (view full) ---

308static int
309ReadSystem(struct bundle *bundle, const char *name, const char *file,
310 struct prompt *prompt, struct datalink *cx, int how)
311{
312 FILE *fp;
313 char *cp;
314 int n, len;
315 char line[LINE_LEN];
1/*
2 * System configuration routines
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
7 *
8 * Redistribution and use in source and binary forms are permitted

--- 299 unchanged lines hidden (view full) ---

308static int
309ReadSystem(struct bundle *bundle, const char *name, const char *file,
310 struct prompt *prompt, struct datalink *cx, int how)
311{
312 FILE *fp;
313 char *cp;
314 int n, len;
315 char line[LINE_LEN];
316 char filename[MAXPATHLEN];
316 char filename[PATH_MAX];
317 int linenum;
318 int argc;
319 char *argv[MAXARGS];
320 int allowcmd;
321 int indent;
322 char arg[LINE_LEN];
323 struct prompt *op;
324

--- 152 unchanged lines hidden ---
317 int linenum;
318 int argc;
319 char *argv[MAXARGS];
320 int allowcmd;
321 int indent;
322 char arg[LINE_LEN];
323 struct prompt *op;
324

--- 152 unchanged lines hidden ---