mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 11:09:06 +08:00
425d593ebe
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk/trunk@2 d0cd1f9f-072b-0410-8dd7-cf729c803f20
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
|