11 lines
133 B
C
11 lines
133 B
C
|
#ifndef PICRIN_H__
|
||
|
#define PICRIN_H__
|
||
|
|
||
|
typedef struct {
|
||
|
} pic_state;
|
||
|
|
||
|
pic_state *pic_open();
|
||
|
void pic_close(pic_state *pic);
|
||
|
|
||
|
#endif
|