-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswf2c.1
More file actions
44 lines (44 loc) · 882 Bytes
/
swf2c.1
File metadata and controls
44 lines (44 loc) · 882 Bytes
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
.Dd 25th February, 2025
.Dt SWF2C 1
.Os
.Sh NAME
.Nm swf2c
.Nd compiles Flash into C
.Sh SYNOPSIS
.Nm
.Cm h Ns | Ns Cm c Ns Op Cm d
.Sh DESCRIPTION
The
.Nm
utility transforms.
The programmer requires no knowledge of Flash, its file format SWF nor Flash
authoring tools, while the artist of Flash requires no knowledge of programming.
.Sh OPTIONS
.Bl -tag -compact
.It Cm c
Prints a source to standard output.
.It Cm h
Prints a header to standard output.
.It Cm d
Prints debug information to standard error.
.El
.Sh FILES
Requires a file at
.Pa C:\eUsers\eNero\eDownloads\eflash_There_She_Is.swf
to work.
.Sh EXIT STATUS
Exits with status 0 on success.
.Sh EXAMPLES
The user may add the following inference rules to their
.Pa Makefile .
.Bd -literal
\&.SUFFIXES: .swf .c .h
\&.swf.c:
swf2c c < $< > $@
\&.swf.h:
swf2c h < $< > $@
.Ed
.Sh SEE ALSO
.Xr swf2c 7
.Xr xxd 1
.Xr ragel 1