1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#include <c-auto.h>
#include <kpathsea/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef WIN32
#define nkf_open fopen
#define nkf_close(fp) {clear_infile_enc(fp); fclose(fp);}
#endif
struct page {
char *page;
char *enc;
char attr[3];
};
struct index {
int num;
char words;
char *org[3];
char *dic[3];
char *idx[3];
struct page *p;
int lnum;
};
/* convert.c */
void initkanatable(void);
int convert(char *buff1, char *buff2);
int pnumconv(char *page, int attr);
int dicread(const char *filename);
/* pageread.c */
int lastpage(const char *filename);
/* sort.c */
void wsort(struct index *ind, int num);
void pagesort(struct index *ind, int num);
int alphanumeric(char c);
int alphabet(char c);
int numeric(char c);
int japanese(char *buff);
int chkcontinue(struct page *p, int num);
/* styfile.c */
void styread(const char *filename);
/* fread.c */
char *mfgets(char *buf, int size, FILE *fp);
int idxread(char *filename, int start);
/* fwrite.c */
int fprintf2 (FILE *fp, const char *format, ...);
void warn_printf(FILE *fp, const char *format, ...);
void verb_printf(FILE *fp, const char *format, ...);
struct index;
void indwrite(char *filename, struct index *ind, int pagenum);
#undef fprintf
#define fprintf fprintf2
#undef fputs
#define fputs fputs2
|