0
|
1 #ifndef gfile_h
|
|
2 #define gfile_h
|
|
3
|
|
4 #include "emboss.h"
|
|
5 #include "curl/curl.h"
|
|
6 #include "curl/easy.h"
|
|
7
|
|
8 #include "gpost.h"
|
|
9
|
|
10 /*
|
|
11 ** Prototype definitions
|
|
12 */
|
|
13
|
|
14 AjBool gValID(AjPStr id);
|
|
15 AjBool gStrAppendURLS(AjPStr url, AjPStr* string);
|
|
16 AjBool gStrAppendURLC(char* url, AjPStr* string);
|
|
17 AjBool gFileOutURLS(AjPStr url, AjPFile* outf);
|
|
18 AjBool gFileOutURLC(char* url, AjPFile* outf);
|
|
19 AjBool gFilebuffURLS(AjPStr url, AjPFilebuff* buff);
|
|
20 AjBool gFilebuffURLC(char* url, AjPFilebuff* buff);
|
|
21 AjBool gFormatGenbank(AjPSeq seq, AjPStr *str);
|
|
22 void gAssignUniqueName(AjPStr *string);
|
|
23 AjPStr gCreateUniqueName();
|
|
24
|
|
25 #endif
|