File: io_curl.h

package info (click to toggle)
moc 1%3A2.6.0~svn-r2994-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,512 kB
  • sloc: ansic: 31,737; sh: 929; cpp: 487; makefile: 241
file content (22 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef IO_CURL_H
#define IO_CURL_H

#include "io.h"

#ifdef __cplusplus
extern "C" {
#endif

void io_curl_init ();
void io_curl_cleanup ();
void io_curl_open (struct io_stream *s, const char *url);
void io_curl_close (struct io_stream *s);
ssize_t io_curl_read (struct io_stream *s, char *buf, size_t count);
void io_curl_strerror (struct io_stream *s);
void io_curl_wake_up (struct io_stream *s);

#ifdef __cplusplus
}
#endif

#endif