repo.or.cz
/
pet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
handle "live-out" pragmas
[pet.git]
/
scop_yaml.h
blob
a7bf999ca9b2a6a1a5d4431f7d50cf677939fe0e
1
#ifndef PET_SCOP_YAML_H
2
#define PET_SCOP_YAML_H
3
4
#include <stdio.h>
5
#include <pet.h>
6
7
#if defined(__cplusplus)
8
extern
"C"
{
9
#endif
10
11
int
pet_scop_emit
(
FILE
*
out
,
struct
pet_scop
*
scop
);
12
struct
pet_scop
*
pet_scop_parse
(
isl_ctx
*
ctx
,
FILE
*
in
);
13
14
#if defined(__cplusplus)
15
}
16
#endif
17
18
#endif