Fix PGN saving with annotations.
[cboard.git] / src / misc.c
blobff9e4be9aedcf99305fe4e1ba9229f5317c11879
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2002-2006 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <err.h>
22 #include <string.h>
23 #include <ctype.h>
24 #include <string.h>
25 #include <errno.h>
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
31 #ifdef HAVE_LIMITS_H
32 #include <limits.h>
33 #endif
35 #ifdef WITH_DMALLOC
36 #include <dmalloc.h>
37 #endif
39 void *Malloc(size_t size)
41 void *ptr;
43 if ((ptr = malloc(size)) == NULL)
44 err(EXIT_FAILURE, "malloc()");
46 return ptr;
49 void *Realloc(void *ptr, size_t size)
51 void *ptr2;
53 if ((ptr2 = realloc(ptr, size)) == NULL)
54 err(EXIT_FAILURE, "realloc()");
56 return ptr2;
59 void *Calloc(size_t n, size_t size)
61 void *p;
63 if ((p = calloc(n, size)) == NULL)
64 err(EXIT_FAILURE, "calloc()");
66 return p;
69 char *trim(char *str)
71 int i = 0;
73 if (!str)
74 return NULL;
76 while (isspace(*str))
77 str++;
79 for (i = strlen(str) - 1; isspace(str[i]); i--)
80 str[i] = 0;
82 return str;
85 char *itoa(long n)
87 static char buf[16];
89 snprintf(buf, sizeof(buf), "%li", n);
90 return buf;
93 int integer_len(long n)
95 return strlen(itoa(n));
98 int isinteger(const char *str)
100 int i;
101 int len = strlen(str);
103 for (i = 0; i < len; i++) {
104 if (!isdigit(str[i]))
105 return 0;
108 return 1;
111 char *tilde_expand(char *str)
113 static char buf[FILENAME_MAX];
115 if (*str == '~') {
116 strncpy(buf, getenv("HOME"), sizeof(buf));
118 if (++str)
119 strncat(buf, str, sizeof(buf));
121 else
122 return str;
124 return buf;