Fix score loader improperly reading player names with spaces
[neverball] / share / common.h
1 /*
2  *  Copyright (C) 2007  Neverball authors
3  *
4  *  This  program is  free software;  you can  redistribute  it and/or
5  *  modify it  under the  terms of the  GNU General Public  License as
6  *  published by the Free Software Foundation; either version 2 of the
7  *  License, or (at your option) any later version.
8  *
9  *  This program  is distributed in the  hope that it  will be useful,
10  *  but  WITHOUT ANY WARRANTY;  without even  the implied  warranty of
11  *  MERCHANTABILITY or FITNESS FOR  A PARTICULAR PURPOSE.  See the GNU
12  *  General Public License for more details.
13  *
14  *  You should have received a  copy of the GNU General Public License
15  *  along  with this  program;  if  not, write  to  the Free  Software
16  *  Foundation,  Inc.,   59  Temple  Place,  Suite   330,  Boston,  MA
17  *  02111-1307 USA
18  */
19
20 #ifndef COMMON_H
21 #define COMMON_H
22
23 #include <time.h>
24 #include <stdio.h>
25 #include "fs.h"
26
27 #ifdef __GNUC__
28 #define NULL_TERMINATED __attribute__ ((__sentinel__))
29 #else
30 #define NULL_TERMINATED
31 #endif
32
33 #define ARRAYSIZE(a) (sizeof (a) / sizeof ((a)[0]))
34 #define MAXSTRLEN(a) (sizeof (a) - 1)
35
36 #define MIN(x, y) ((x) < (y) ? (x) : (y))
37 #define MAX(x, y) ((x) > (y) ? (x) : (y))
38
39 #define SAFECPY(dst, src) (strncpy((dst), (src), MAXSTRLEN(dst)))
40 #define SAFECAT(dst, src) (strncat((dst), \
41                                    (src), \
42                                    MAX(0, MAXSTRLEN(dst) - strlen(dst))))
43
44 int   read_line(char **, fs_file);
45 char *strip_newline(char *);
46
47 char *dupe_string(const char *);
48 char *concat_string(const char *first, ...) NULL_TERMINATED;
49
50 #ifdef strdup
51 #undef strdup
52 #endif
53 #define strdup dupe_string
54
55 #define str_starts_with(s, h) (strncmp((s), (h), strlen(h)) == 0)
56 #define str_ends_with(s, t) (strcmp((s) + strlen(s) - strlen(t), (t)) == 0)
57
58 time_t make_time_from_utc(struct tm *);
59 const char *date_to_str(time_t);
60
61 int  file_exists(const char *);
62 int  file_rename(const char *, const char *);
63 void file_copy(FILE *fin, FILE *fout);
64
65 int path_is_sep(int);
66 int path_is_abs(const char *);
67
68 char *path_join(const char *, const char *);
69
70 const char *path_last_sep(const char *);
71 const char *path_next_sep(const char *);
72
73 const char *base_name(const char *name);
74 const char *base_name_sans(const char *name, const char *suffix);
75 const char *dir_name(const char *name);
76
77 int rand_between(int low, int high);
78
79 #endif