But did that by switching away from using Lisp calling convention, because that broke horribly. This is bad news and must be sorted out.
21 lines
411 B
C
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
|