/[public]/psiconv/trunk/lib/psiconv/misc.c
ViewVC logotype

Annotation of /psiconv/trunk/lib/psiconv/misc.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 196 - (hide annotations)
Wed Feb 4 12:19:09 2004 UTC (20 years, 2 months ago) by frodo
File MIME type: text/plain
File size: 1635 byte(s)
(Frodo) Copyright dates update

1 frodo 62 /*
2     parse_aux.c - Part of psiconv, a PSION 5 file formats converter
3 frodo 196 Copyright (c) 1999-2004 Frodo Looijaard <frodol@dds.nl>
4 frodo 62
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.
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, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18     */
19    
20     #include "config.h"
21 frodo 71 #include "compat.h"
22 frodo 62 #include <stdarg.h>
23     #include <stdio.h>
24     #include <stdlib.h>
25 frodo 171 #include <string.h>
26 frodo 71 #include "common.h"
27 frodo 62
28 frodo 142 #ifdef DMALLOC
29     #include <dmalloc.h>
30     #endif
31    
32    
33 frodo 184 char *psiconv_make_printable(const psiconv_config config,
34     const psiconv_string_t input)
35 frodo 62 {
36 frodo 184 int i,len;
37     psiconv_u8 *intermed;
38     char *output;
39     int res;
40    
41     if ((res = psiconv_unicode_to_chars(config,input,&intermed)))
42 frodo 62 return NULL;
43 frodo 184
44     len = 0;
45     while (intermed[len])
46     len++;
47    
48     if (!(output = malloc(sizeof(*output) * (len + 1)))) {
49     free(intermed);
50     return NULL;
51     }
52    
53     for (i = 0; i < len; i ++)
54     if (intermed[i] < 0x20 || intermed[i] >= 0x7f)
55     output[i] = '.';
56 frodo 62 else
57 frodo 184 output[i] = intermed[i];
58     output[i] = 0;
59     free(intermed);
60     return output;
61 frodo 62 }

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26