-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_extract.c
executable file
·107 lines (90 loc) · 2.47 KB
/
text_extract.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
* Copyright (C) 2001 Simon Wistow <[email protected]>
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
* $Log: text_extract.c,v $
* Revision 1.5 2001/07/14 02:06:00 clampr
* suprious line deltas
*
* Revision 1.4 2001/07/14 00:46:08 clampr
* file vars
*
* Revision 1.3 2001/07/13 14:35:46 muttley
* Check to see if we could actually open the swf for parsing
*
* Revision 1.2 2001/07/09 13:51:37 muttley
* fixed minor bug in text_extract and lib_swfextract where it would try
* and print out strings instead of urls :(
*
* Revision 1.1 2001/07/09 12:47:22 muttley
* Initial revision
*
*/
#include "lib_swfextract.h"
#include <stdio.h>
void usage (char * name);
void
usage (char * name)
{
fprintf (stderr, "%s <filename>\n", name);
}
/*
* The main function
*/
int
main (int argc, char *argv[])
{
swf_extractor * swf;
int error = SWF_ENoError;
int num_string, num_url, i;
char ** strings, ** urls;
/* Check the argument count. */
if (argc < 2) {
/* Bad arguments. */
usage(argv[0]);
return -1;
}
swf = load_swf (argv[1], &error);
if (error!=SWF_ENoError)
{
fprintf (stderr, "Error creating parser : %s\n", swf_error_code_to_string (error));
return error;
}
num_string = get_number_strings (swf);
num_url = get_number_urls (swf);
strings = get_strings (swf);
urls = get_urls (swf);
printf ("Number of strings is %d\n", num_string);
for (i=0; i<num_string; i++)
{
printf ("\t ... %s\n",strings[i]);
}
printf ("\n\n");
printf ("Number of urls is %d\n", num_url);
for (i=0; i<num_url; i++)
{
printf ("\t ... %s\n",urls[i]);
}
destroy_swf (swf);
return error;
}
/*
Local Variables:
mode: C
c-basic-offset: 4
tab-width: 4
End:
*/