chiark / gitweb /
Merge branch 'master' of git.distorted.org.uk:~mdw/publish/public-git/disorder
[disorder] / clients / filename-bytes.c
CommitLineData
8a886602
RK
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 */
132a5a4a
RK
18/** @file clients/filename-bytes.c
19 * @brief Print out raw bytes of filenames in a directory
20 */
460b9539 21
05b75f8d 22#include "common.h"
460b9539 23
24#include <dirent.h>
460b9539 25#include <ctype.h>
26
27int 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/*
52Local Variables:
53c-basic-offset:2
54comment-column:40
55fill-column:79
56indent-tabs-mode:nil
57End:
58*/