You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
292 B
10 lines
292 B
/* Licensed under LGPLv2+ - see LICENSE file for details */
|
|
#ifndef _CCAN_READ_WRITE_H
|
|
#define _CCAN_READ_WRITE_H
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
|
|
bool write_all(int fd, const void *data, size_t size);
|
|
bool read_all(int fd, void *data, size_t size);
|
|
|
|
#endif /* _CCAN_READ_WRITE_H */
|
|
|