projects
/
paraslash.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Typo
[paraslash.git]
/
file_writer.c
diff --git
a/file_writer.c
b/file_writer.c
index
dabe92c
..
a7a765e
100644
(file)
--- a/
file_writer.c
+++ b/
file_writer.c
@@
-23,9
+23,12
@@
#include "string.h"
#include "error.h"
#include "string.h"
#include "error.h"
+/** data specific to the file writer */
struct private_file_writer_data {
struct private_file_writer_data {
- int fd;
+/** the file descriptor of the output file */
+int fd;
};
};
+
static int file_writer_open(struct writer_node *w)
{
struct private_file_writer_data *pfwd = para_calloc(
static int file_writer_open(struct writer_node *w)
{
struct private_file_writer_data *pfwd = para_calloc(
@@
-60,6
+63,7
@@
static void file_writer_close(struct writer_node *wn)
free(pfwd);
}
free(pfwd);
}
+/** the init function of the file writer */
void file_writer_init(struct writer *w)
{
w->open = file_writer_open;
void file_writer_init(struct writer *w)
{
w->open = file_writer_open;