mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-12 07:29:07 +08:00
cntraining: Replace proprietary BOOL8 by standard bool data type
Add also "static" attribute to local functions and remove an old comment. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
45b11cd93f
commit
b292013bdc
@ -45,21 +45,11 @@ DECLARE_STRING_PARAM_FLAG(D);
|
||||
Private Function Prototypes
|
||||
----------------------------------------------------------------------------*/
|
||||
|
||||
void WriteNormProtos(const char *Directory, LIST LabeledProtoList,
|
||||
const FEATURE_DESC_STRUCT *feature_desc);
|
||||
static void WriteNormProtos(const char *Directory, LIST LabeledProtoList,
|
||||
const FEATURE_DESC_STRUCT *feature_desc);
|
||||
|
||||
/*
|
||||
PARAMDESC *ConvertToPARAMDESC(
|
||||
PARAM_DESC* Param_Desc,
|
||||
int N);
|
||||
*/
|
||||
|
||||
void WriteProtos(
|
||||
FILE *File,
|
||||
uint16_t N,
|
||||
LIST ProtoList,
|
||||
BOOL8 WriteSigProtos,
|
||||
BOOL8 WriteInsigProtos);
|
||||
static void WriteProtos(FILE* File, uint16_t N, LIST ProtoList,
|
||||
bool WriteSigProtos, bool WriteInsigProtos);
|
||||
|
||||
/*----------------------------------------------------------------------------
|
||||
Global Data Definitions and Declarations
|
||||
@ -216,8 +206,8 @@ int main(int argc, char *argv[]) {
|
||||
* @note Exceptions: none
|
||||
* @note History: Fri Aug 18 16:17:06 1989, DSJ, Created.
|
||||
*/
|
||||
void WriteNormProtos(const char *Directory, LIST LabeledProtoList,
|
||||
const FEATURE_DESC_STRUCT *feature_desc) {
|
||||
static void WriteNormProtos(const char *Directory, LIST LabeledProtoList,
|
||||
const FEATURE_DESC_STRUCT *feature_desc) {
|
||||
FILE *File;
|
||||
STRING Filename;
|
||||
LABELEDLIST LabeledProto;
|
||||
@ -254,12 +244,9 @@ void WriteNormProtos(const char *Directory, LIST LabeledProtoList,
|
||||
} // WriteNormProtos
|
||||
|
||||
/*-------------------------------------------------------------------------*/
|
||||
void WriteProtos(
|
||||
FILE *File,
|
||||
uint16_t N,
|
||||
LIST ProtoList,
|
||||
BOOL8 WriteSigProtos,
|
||||
BOOL8 WriteInsigProtos)
|
||||
|
||||
static void WriteProtos(FILE* File, uint16_t N, LIST ProtoList,
|
||||
bool WriteSigProtos, bool WriteInsigProtos)
|
||||
{
|
||||
PROTOTYPE *Proto;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user