~ubuntu-branches/ubuntu/trusty/skktools/trusty-proposed

« back to all changes in this revision

Viewing changes to skkdic-expr.c

  • Committer: Bazaar Package Importer
  • Author(s): Takao KAWAMURA
  • Date: 2003-09-18 15:31:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030918153109-9ubs3wtb5pxtv8us
Tags: 1.1-1
* New upstream release.
* Fixed the extended description. (Closes: Bug#209892)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
Author: Hironobu Takahashi, Masahiko Sato, Kiyotaka Sakai, Kenji Yabuuchi
6
6
Maintainer: Mikio Nakajima <minakaji@osaka.email.ne.jp>
7
 
Version: $Id: skkdic-expr.c,v 1.7 2000/10/05 17:16:44 czkmt Exp $
 
7
Version: $Id: skkdic-expr.c,v 1.8 2000/12/15 10:04:50 minakaji Exp $
8
8
Keywords: japanese
9
 
Last Modified: $Date: 2000/10/05 17:16:44 $
 
9
Last Modified: $Date: 2000/12/15 10:04:50 $
10
10
 
11
11
This file is part of Daredevil SKK.
12
12
 
738
738
    for (key = dbm_firstkey(db); key.dptr !=  NULL;  key = dbm_nextkey(db)) {
739
739
        content = dbm_fetch(db, key);
740
740
        for(i = 0; i < key.dsize; ++ i)
741
 
            putc((key.dptr)[i], output);
 
741
            putc(((char *)key.dptr)[i], output);
742
742
        putc(' ', output);
743
743
        fseek(dbcontent, getpos(content.dptr), 0);
744
744
        db_gets(kanji, BLEN, dbcontent);
756
756
            if (entry.dptr != NULL) continue;
757
757
 
758
758
            for(i = 0; i < key.dsize; ++ i)
759
 
                putc((key.dptr)[i], output);
 
759
                putc(((char *)key.dptr)[i], output);
760
760
            putc(' ', output);
761
761
            putc('/', output);
762
762
            okuri_type_out(&key, output);