~ubuntu-branches/ubuntu/precise/hime/precise

« back to all changes in this revision

Viewing changes to data/extr1.c

  • Committer: Package Import Robot
  • Author(s): Yao Wei (魏銘廷)
  • Date: 2012-01-14 00:24:08 UTC
  • Revision ID: package-import@ubuntu.com-20120114002408-e79gagbeg1rt8npv
Tags: upstream-0.9.9
Import upstream version 0.9.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2011 Edward Der-Hua Liu, Hsin-Chu, Taiwan
 
2
 *
 
3
 * This library is free software; you can redistribute it and/or
 
4
 * modify it under the terms of the GNU Lesser General Public
 
5
 * License as published by the Free Software Foundation; either
 
6
 * version 2.1 of the License, or (at your option) any later version.
 
7
 *
 
8
 * This library is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public
 
14
 * License along with this library; if not, write to the Free Software
 
15
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
16
 */
 
17
 
 
18
#include <stdio.h>
 
19
#include <string.h>
 
20
#include "util.h"
 
21
int utf8_str_N(char *str);
 
22
 
 
23
 
 
24
int main()
 
25
{
 
26
  FILE *fp;
 
27
 
 
28
  if ((fp=fopen("tsin.src", "r"))==NULL)
 
29
    p_err("cannot open");
 
30
 
 
31
  while (!feof(fp)) {
 
32
    char aa[128];
 
33
    char bb[128];
 
34
    int usecount;
 
35
    char line[256];
 
36
 
 
37
    fgets(line, sizeof(line), fp);
 
38
    sscanf(line, "%s %s %d", aa, bb, &usecount);
 
39
 
 
40
    if (utf8_str_N(aa)==1)
 
41
      printf("%s", line);
 
42
  }
 
43
 
 
44
  return 0;
 
45
}