chiark / gitweb /
uaudio: more sophisticated choice of default playback API
[disorder] / clients / filename-bytes.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004-2008 Richard Kettlewell
4  *
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 3 of the License, or
8  * (at your option) any later version.
9  *
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.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file clients/filename-bytes.c
19  * @brief Print out raw bytes of filenames in a directory
20  */
21
22 #include "common.h"
23
24 #include <dirent.h>
25 #include <ctype.h>
26
27 int main(int attribute((unused)) argc, char **argv) {
28   DIR *dp;
29   struct dirent *de;
30   int n;
31   
32   if(!(dp = opendir(argv[1]))) return -1;
33   while((de = readdir(dp))) {
34     for(n = 0; de->d_name[n]; ++n) {
35       printf("%02x", (unsigned char)de->d_name[n]);
36       if(n) putchar(' ');
37     }
38     putchar('\n');
39     for(n = 0; de->d_name[n]; ++n) {
40       if(isprint((unsigned char)de->d_name[n]))
41         printf(" %c", (unsigned char)de->d_name[n]);
42       else
43         printf("  ");
44       if(n) putchar(' ');
45     }
46     putchar('\n');
47   }
48   return 0;
49 }
50
51 /*
52 Local Variables:
53 c-basic-offset:2
54 comment-column:40
55 fill-column:79
56 indent-tabs-mode:nil
57 End:
58 */