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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 184 - (show annotations)
Tue Jan 6 20:15:01 2004 UTC (20 years, 2 months ago) by frodo
File MIME type: text/plain
File size: 1636 byte(s)
(Frodo) Unicode transition

Note: this commit breaks psiconv. The programs in the extra directory should
work properly.

  * Change all datastructures to use unicode for character encodings
  * Added psiconv_error function
  * Called psiconv_error at places where a warning was stupid
  * Added psiconv_progress in all generate functions
  * Added lev parameter to all generate functions
  * Removed general.h from CVS (we have general.h.in, after all)
  * Probably other stuff I forgot

1 /*
2 parse_aux.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl>
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 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 #include "compat.h"
22 #include <stdarg.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include "common.h"
27
28 #ifdef DMALLOC
29 #include <dmalloc.h>
30 #endif
31
32
33 char *psiconv_make_printable(const psiconv_config config,
34 const psiconv_string_t input)
35 {
36 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 return NULL;
43
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 else
57 output[i] = intermed[i];
58 output[i] = 0;
59 free(intermed);
60 return output;
61 }

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