mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-29 14:31:11 +08:00
22 lines
427 B
C
22 lines
427 B
C
|
#ifndef CHARTONAME_H
|
||
|
#define CHARTONAME_H
|
||
|
|
||
|
/*result */
|
||
|
void chartoname(register char *name,
|
||
|
char c, /*char to convert */
|
||
|
const char *dir); /*directory to use */
|
||
|
|
||
|
/*
|
||
|
#if defined(__STDC__) || defined(__cplusplus)
|
||
|
# define _P(s) s
|
||
|
#else
|
||
|
# define _P(s) ()
|
||
|
#endif*/
|
||
|
|
||
|
/* chartoname.c
|
||
|
int chartoname _P((char *name, int c, char *dir));
|
||
|
|
||
|
#undef _P
|
||
|
*/
|
||
|
#endif
|