tesseract  4.0.0-1-g2a2b
cutil.h
Go to the documentation of this file.
1 /* -*-C-*-
2  ******************************************************************************
3  *
4  * File: cutil.h
5  * Description: General utility functions
6  * Author: Mark Seaman, SW Productivity
7  * Created: Fri Oct 16 14:37:00 1987
8  * Modified: Wed Dec 5 15:40:26 1990 (Mark Seaman) marks@hpgrlt
9  * Language: C
10  * Package: N/A
11  * Status: Reusable Software Component
12  *
13  * (c) Copyright 1987, Hewlett-Packard Company.
14  ** Licensed under the Apache License, Version 2.0 (the "License");
15  ** you may not use this file except in compliance with the License.
16  ** You may obtain a copy of the License at
17  ** http://www.apache.org/licenses/LICENSE-2.0
18  ** Unless required by applicable law or agreed to in writing, software
19  ** distributed under the License is distributed on an "AS IS" BASIS,
20  ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21  ** See the License for the specific language governing permissions and
22  ** limitations under the License.
23  *
24  ******************************************************************************
25  */
26 
27 #ifndef CUTILH
28 #define CUTILH
29 
30 typedef void (*void_proc)(...);
31 
32 typedef int (*int_compare)(void*, void*);
33 typedef void (*void_dest)(void*);
34 
35 #endif
void(* void_dest)(void *)
Definition: cutil.h:33
int(* int_compare)(void *, void *)
Definition: cutil.h:32
void(* void_proc)(...)
Definition: cutil.h:30