post-scarcity/src/c/ops/reverse.h
Simon Brooke f915a9993f Fixed assigning arguments to slots in the frame; also fixed a bug in bind...
But did that by switching away from using Lisp calling convention, because
that broke horribly. This is bad news and must be sorted out.
2026-04-16 17:13:20 +01:00

21 lines
411 B
C

/**
* ops/reverse.h
*
* Post Scarcity Software Environment: reverse.
*
* Reverse a sequence.
*
* (c) 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef __psse_ops_reverse_h
#define __psse_ops_reverse_h
#include <stdbool.h>
#include "memory/pointer.h"
struct pso_pointer c_reverse( struct pso_pointer sequence );
#endif