aboutsummaryrefslogtreecommitdiffstats
path: root/c_src/io.h
blob: bf4e086bd5b0d66a85bcf133f3d9d846976a4b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (C) 2008, Brian Cully <bjc@kublai.com>
 */

#ifndef _IO_H
#define _IO_H

#include <sys/types.h>

int restartable_read(unsigned char *buf, size_t buflen);
int restartable_write(const unsigned char *buf, size_t buflen);

#endif