17 lines
209 B
C
17 lines
209 B
C
|
#ifndef LIBOGA_H
|
||
|
#define LIBOGA_H
|
||
|
|
||
|
#include <ruby.h>
|
||
|
#include <ruby/encoding.h>
|
||
|
#include <malloc.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
extern VALUE oga_mOga;
|
||
|
|
||
|
#include "xml.h"
|
||
|
#include "lexer.h"
|
||
|
|
||
|
void Init_liboga();
|
||
|
|
||
|
#endif
|