INGOR
Loading...
Searching...
No Matches
ytGDF.h
1/*
2 io/GDF.{h,c} : General Data Frame Reader/Writer
3 Copyright (C) 2018, Yoshinori Tamada <tamada A T ytlab.jp>
4 All rights reserved.
5
6 See LICENSE.txt for details of the licensing agreement.
7*/
8
9#ifndef __YTLIB_GDF_H
10#define __YTLIB_GDF_H
11
12#include <stdio.h>
13
14#include "util/ytData.h"
15#include "util/ytKeyValues.h"
16
17ytData * ytGDF_read_fp(FILE * fp, ytKeyValues * args);
18void ytGDF_write_fp(FILE * fp, ytData * data, ytKeyValues * args);
19
20int ytGDF_debug(int argc, char * argv[]);
21
22#endif /* __YTLIB_GDF_H */
key-value pairs.
General data container.
Definition ytData.h:46