forked from cpan-authors/YAML-Syck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSyck.xs
More file actions
52 lines (37 loc) · 639 Bytes
/
Syck.xs
File metadata and controls
52 lines (37 loc) · 639 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
45
46
47
48
49
50
51
/* #define YAML_IS_JSON 1 */
#include "perl_common.h"
#define YAML_IS_JSON 1
#include "perl_syck.h"
#undef YAML_IS_JSON
#include "perl_syck.h"
typedef PerlIO * OutputStream;
MODULE = YAML::Syck PACKAGE = YAML::Syck
PROTOTYPES: DISABLE
SV *
LoadYAML (s)
char * s
SV *
DumpYAML (sv)
SV * sv
int
DumpYAMLInto (in, out)
SV * in
SV * out
int
DumpYAMLFile (in, out)
SV * in
OutputStream out
SV *
LoadJSON (s)
char * s
SV *
DumpJSON (sv)
SV * sv
int
DumpJSONInto (in, out)
SV * in
SV * out
int
DumpJSONFile (in, out)
SV * in
OutputStream out