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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 71 Revision 351
1/* 1/*
2 parse_aux.c - Part of psiconv, a PSION 5 file formats converter 2 parse_aux.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 1999-2014 Frodo Looijaard <frodo@frodo.looijaard.name>
4 4
5 This program is free software; you can redistribute it and/or modify 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 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 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
20#include "config.h" 20#include "config.h"
21#include "compat.h" 21#include "compat.h"
22#include <stdarg.h> 22#include <stdarg.h>
23#include <stdio.h> 23#include <stdio.h>
24#include <stdlib.h> 24#include <stdlib.h>
25#include <string.h>
25#include "common.h" 26#include "common.h"
26 27
27char *psiconv_make_printable(const char *s) 28#ifdef DMALLOC
29#include <dmalloc.h>
30#endif
31
32
33char *psiconv_make_printable(const psiconv_config config,
34 const psiconv_string_t input)
28{ 35{
29 int i; 36 int i;
30 char *res = malloc(strlen(s) + 1); 37 char *output;
31 if (!res) 38
39 if (!(output = malloc(sizeof(*output) *
40 (psiconv_unicode_strlen(input) + 1)))) {
32 return NULL; 41 return NULL;
42 }
43
33 for (i = 0; i < strlen(s); i ++) 44 for (i = 0; i < psiconv_unicode_strlen(input); i ++)
34 if (s[i] < 0x20 || s[i] >= 0x7f) 45 if (input[i] < 0x20 || input[i] >= 0x7f)
35 res[i] = '.'; 46 output[i] = '.';
36 else 47 else
37 res[i] = s[i]; 48 output[i] = input[i];
38 res[strlen(s)] = 0; 49 output[i] = 0;
39 return res; 50 return output;
40} 51}

Legend:
Removed from v.71  
changed lines
  Added in v.351

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