altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / ao-tools / lib / cc-util.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * 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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #define _GNU_SOURCE
20 #include "cc.h"
21 #include <string.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
26 #include <errno.h>
27
28 char *
29 cc_fullname (char *dir, char *file)
30 {
31         char    *new;
32         int     dlen = strlen (dir);
33         int     flen = strlen (file);
34         int     slen = 0;
35
36         if (dir[dlen-1] != '/')
37                 slen = 1;
38         new = malloc (dlen + slen + flen + 1);
39         if (!new)
40                 return 0;
41         strcpy(new, dir);
42         if (slen)
43                 strcat (new, "/");
44         strcat(new, file);
45         return new;
46 }
47
48 char *
49 cc_basename(char *file)
50 {
51         char *b;
52
53         b = strrchr(file, '/');
54         if (!b)
55                 return file;
56         return b + 1;
57 }
58
59 int
60 cc_mkdir(char *dir)
61 {
62         char    *slash;
63         char    *d;
64         char    *part;
65
66         d = dir;
67         for (;;) {
68                 slash = strchr (d, '/');
69                 if (!slash)
70                         slash = d + strlen(d);
71                 if (!*slash)
72                         break;
73                 part = strndup(dir, slash - dir);
74                 if (!access(part, F_OK))
75                         if (mkdir(part, 0777) < 0)
76                                 return -errno;
77                 free(part);
78                 d = slash + 1;
79         }
80         return 0;
81 }