blob: 3ab230fcbc0721fcaacfdbe20afb4b90d4a577c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* source_write.h
*
*/
#ifndef SOURCE_WRITE_H
#define SOURCE_WRITE_H
#include <stdio.h>
#include "pool.h"
#include "source.h"
extern void pool_writesource(Pool *pool, Source *source, FILE *fp);
#endif
|