Files
kernel/scripts/kconfig/util.c
T

130 lines
2.2 KiB
C
Raw Normal View History

2018-12-18 21:13:35 +09:00
// SPDX-License-Identifier: GPL-2.0
2005-04-16 15:20:36 -07:00
/*
* Copyright (C) 2002-2005 Roman Zippel <zippel@linux-m68k.org>
* Copyright (C) 2002-2005 Sam Ravnborg <sam@ravnborg.org>
*/
2011-06-01 16:00:46 -04:00
#include <stdarg.h>
2011-06-01 16:08:14 -04:00
#include <stdlib.h>
2005-04-16 15:20:36 -07:00
#include <string.h>
#include "lkc.h"
/* file already present in list? If not add it */
struct file *file_lookup(const char *name)
{
struct file *file;
for (file = file_list; file; file = file->next) {
2010-09-04 16:11:26 -04:00
if (!strcmp(name, file->name)) {
2005-04-16 15:20:36 -07:00
return file;
2010-09-04 16:11:26 -04:00
}
2005-04-16 15:20:36 -07:00
}
2012-11-06 14:32:08 +00:00
file = xmalloc(sizeof(*file));
2005-04-16 15:20:36 -07:00
memset(file, 0, sizeof(*file));
file->name = xstrdup(name);
2005-04-16 15:20:36 -07:00
file->next = file_list;
file_list = file;
return file;
}
2010-02-19 12:43:44 +01:00
/* Allocate initial growable string */
2005-04-16 15:20:36 -07:00
struct gstr str_new(void)
{
struct gstr gs;
2012-11-06 14:32:08 +00:00
gs.s = xmalloc(sizeof(char) * 64);
gs.len = 64;
2009-12-20 00:29:49 -08:00
gs.max_width = 0;
2005-04-16 15:20:36 -07:00
strcpy(gs.s, "\0");
return gs;
}
/* Free storage for growable string */
void str_free(struct gstr *gs)
{
if (gs->s)
free(gs->s);
gs->s = NULL;
gs->len = 0;
}
/* Append to growable string */
void str_append(struct gstr *gs, const char *s)
{
2007-09-19 21:23:09 +02:00
size_t l;
if (s) {
l = strlen(gs->s) + strlen(s) + 1;
if (l > gs->len) {
2018-02-09 01:19:07 +09:00
gs->s = xrealloc(gs->s, l);
2007-09-19 21:23:09 +02:00
gs->len = l;
}
strcat(gs->s, s);
2005-04-16 15:20:36 -07:00
}
}
/* Append printf formatted string to growable string */
void str_printf(struct gstr *gs, const char *fmt, ...)
{
va_list ap;
char s[10000]; /* big enough... */
va_start(ap, fmt);
vsnprintf(s, sizeof(s), fmt, ap);
str_append(gs, s);
va_end(ap);
}
2006-01-03 13:27:11 +01:00
/* Retrieve value of growable string */
2005-04-16 15:20:36 -07:00
const char *str_get(struct gstr *gs)
{
return gs->s;
}
2012-11-06 14:32:08 +00:00
void *xmalloc(size_t size)
{
void *p = malloc(size);
if (p)
return p;
fprintf(stderr, "Out of memory.\n");
exit(1);
}
void *xcalloc(size_t nmemb, size_t size)
{
void *p = calloc(nmemb, size);
if (p)
return p;
fprintf(stderr, "Out of memory.\n");
exit(1);
}
2018-02-09 01:19:07 +09:00
void *xrealloc(void *p, size_t size)
{
p = realloc(p, size);
if (p)
return p;
fprintf(stderr, "Out of memory.\n");
exit(1);
}
2018-02-17 03:38:31 +09:00
char *xstrdup(const char *s)
{
char *p;
p = strdup(s);
if (p)
return p;
fprintf(stderr, "Out of memory.\n");
exit(1);
}
char *xstrndup(const char *s, size_t n)
{
char *p;
p = strndup(s, n);
if (p)
return p;
fprintf(stderr, "Out of memory.\n");
exit(1);
}