Moved everything from ops/stack_ops (which were not ops) to payloads/stack.

Added io functions to function_bindings.
This commit is contained in:
Simon Brooke 2026-05-05 19:16:44 +01:00
parent 4d480798e8
commit 818293d4f1
34 changed files with 217 additions and 94 deletions

View file

@ -44,7 +44,7 @@
#include "payloads/exception.h"
#include "payloads/integer.h"
#include "ops/stack_ops.h"
#include "payloads/stack.h"
#include "ops/truth.h"
struct pso_pointer in_write( struct pso_pointer p, URL_FILE * output,
@ -295,6 +295,8 @@ struct pso_pointer c_write(struct pso_pointer frame_pointer,
/**
* @brief Simple print for bootstrap layer.
*
* (print object stream)
*
* @param p pointer to the object to print.
* @param stream if a pointer to an open write stream, print to there.
* @return struct pso_pointer `nil`, or an exception if some erroe occurred.