File: stream.h

package info (click to toggle)
gr-framework 0.73.22%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,476 kB
  • sloc: ansic: 87,950; cpp: 58,388; objc: 3,057; javascript: 2,647; python: 1,000; yacc: 855; pascal: 554; sh: 281; fortran: 228; makefile: 174
file content (20 lines) | stat: -rw-r--r-- 329 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _IO_H_
#define _IO_H_

#ifdef __cplusplus
extern "C" {
#endif

int gr_openstream(const char *path);
void gr_writestream(char *string, ...);
void gr_flushstream(int discard);
void gr_closestream(void);
int gr_startlistener(void);
int gr_inqgrplotport(void);
int gr_setgrplotport(int);

#ifdef __cplusplus
}
#endif

#endif