post-scarcity/src/c/payloads/write_stream.h

18 lines
486 B
C

/**
* payloads/write_stream.h
*
* A write_stream cell.
*
* (c) 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef __psse_payloads_write_stream_h
#define __psse_payloads_write_stream_h
/* write stream shares a payload with /see read_streem.h */
#include "io/fopen.h"
struct pso_pointer make_write_stream( URL_FILE * output,
struct pso_pointer metadata );
#endif