1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2002-2005 Roman Zippel <zippel@linux-m68k.org>
4 * Copyright (C) 2002-2005 Sam Ravnborg <sam@ravnborg.org>
12 /* file already present in list? If not add it */
13 struct file *file_lookup(const char *name)
17 for (file = file_list; file; file = file->next) {
18 if (!strcmp(name, file->name)) {
23 file = xmalloc(sizeof(*file));
24 memset(file, 0, sizeof(*file));
25 file->name = xstrdup(name);
26 file->next = file_list;
31 /* Allocate initial growable string */
32 struct gstr str_new(void)
35 gs.s = xmalloc(sizeof(char) * 64);
42 /* Free storage for growable string */
43 void str_free(struct gstr *gs)
51 /* Append to growable string */
52 void str_append(struct gstr *gs, const char *s)
56 l = strlen(gs->s) + strlen(s) + 1;
58 gs->s = xrealloc(gs->s, l);
65 /* Append printf formatted string to growable string */
66 void str_printf(struct gstr *gs, const char *fmt, ...)
69 char s[10000]; /* big enough... */
71 vsnprintf(s, sizeof(s), fmt, ap);
76 /* Retrieve value of growable string */
77 const char *str_get(struct gstr *gs)
82 void *xmalloc(size_t size)
84 void *p = malloc(size);
87 fprintf(stderr, "Out of memory.\n");
91 void *xcalloc(size_t nmemb, size_t size)
93 void *p = calloc(nmemb, size);
96 fprintf(stderr, "Out of memory.\n");
100 void *xrealloc(void *p, size_t size)
102 p = realloc(p, size);
105 fprintf(stderr, "Out of memory.\n");
109 char *xstrdup(const char *s)
116 fprintf(stderr, "Out of memory.\n");
120 char *xstrndup(const char *s, size_t n)
127 fprintf(stderr, "Out of memory.\n");