lkc.h (82ffd0454bd9bd57780966d47bfd56d579dd4fb3) | lkc.h (981e545a698aee98ed9c11202fe9bc93242f3cec) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 4 */ 5 6#ifndef LKC_H 7#define LKC_H 8 --- 76 unchanged lines hidden (view full) --- 85/* util.c */ 86struct file *file_lookup(const char *name); 87void *xmalloc(size_t size); 88void *xcalloc(size_t nmemb, size_t size); 89void *xrealloc(void *p, size_t size); 90char *xstrdup(const char *s); 91char *xstrndup(const char *s, size_t n); 92 | 1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 4 */ 5 6#ifndef LKC_H 7#define LKC_H 8 --- 76 unchanged lines hidden (view full) --- 85/* util.c */ 86struct file *file_lookup(const char *name); 87void *xmalloc(size_t size); 88void *xcalloc(size_t nmemb, size_t size); 89void *xrealloc(void *p, size_t size); 90char *xstrdup(const char *s); 91char *xstrndup(const char *s, size_t n); 92 |
93/* zconf.l */ | 93/* lexer.l */ |
94int yylex(void); 95 96struct gstr { 97 size_t len; 98 char *s; 99 /* 100 * when max_width is not zero long lines in string s (if any) get 101 * wrapped not to exceed the max_width value --- 59 unchanged lines hidden --- | 94int yylex(void); 95 96struct gstr { 97 size_t len; 98 char *s; 99 /* 100 * when max_width is not zero long lines in string s (if any) get 101 * wrapped not to exceed the max_width value --- 59 unchanged lines hidden --- |