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
|
/**
* char-private.h
*
* Copyright (c) 2008
* libchewing Core Team. See ChangeLog for details.
*
* See the file "COPYING" for information on usage and redistribution
* of this file.
*/
#ifndef _CHEWING_CHAR_PRIVATE_H
#define _CHEWING_CHAR_PRIVATE_H
#include "global.h"
#ifndef SEEK_SET
#define SEEK_SET 0
#endif
typedef struct {
char word[ 7 ];
} Word;
int GetCharFirst( Word *, uint16 );
int GetCharNext ( Word * );
int InitChar( const char * );
#endif
|