"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "gtkfind-1.1/gtk_print1.h" of archive gtkfind-1.1.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 /* gtk_print1.h */
2 /* the gtk_print function from gtkmain.c is very useful, but is not exported
3 from libgtk. So I have to include it by hand, renamed in case it _is_
4 exported at a future date...
5 */
6 /*
7 gtkfind - a graphical "find" program
8 Copyright (C) 1999 Matthew Grossman <mattg@oz.net>
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25
26
27
28 #ifndef GTK_PRINT_H
29 #define GTK_PRINT_H
30
31 #include<stdio.h>
32 #include<stdlib.h>
33 #include<gtk/gtk.h>
34
35 void gtk_print1(gchar *str);
36
37 #endif /* !GTK_PRINT_H */