lkc.h (2fc2991175bf77395e6b15fe6b2304d3bf72da40) lkc.h (7a88488bbc231e48a4a88ee2569bc0cc5d706f0a)
1/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#ifndef LKC_H
7#define LKC_H
8

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

32#define SRCTREE "srctree"
33
34#define PACKAGE "linux"
35#define LOCALEDIR "/usr/share/locale"
36
37#define _(text) gettext(text)
38#define N_(text) (text)
39
1/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#ifndef LKC_H
7#define LKC_H
8

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

32#define SRCTREE "srctree"
33
34#define PACKAGE "linux"
35#define LOCALEDIR "/usr/share/locale"
36
37#define _(text) gettext(text)
38#define N_(text) (text)
39
40
41#define TF_COMMAND 0x0001
42#define TF_PARAM 0x0002
43
44struct kconf_id {
45 int name;
46 int token;
47 unsigned int flags;
48};
49
40int zconfparse(void);
41void zconfdump(FILE *out);
42
43extern int zconfdebug;
44void zconf_starthelp(void);
45FILE *zconf_fopen(const char *name);
46void zconf_initscan(const char *name);
47void zconf_nextfile(const char *name);

--- 90 unchanged lines hidden ---
50int zconfparse(void);
51void zconfdump(FILE *out);
52
53extern int zconfdebug;
54void zconf_starthelp(void);
55FILE *zconf_fopen(const char *name);
56void zconf_initscan(const char *name);
57void zconf_nextfile(const char *name);

--- 90 unchanged lines hidden ---