Well, I really made a mess with the last commit; this one sorts it out.
This commit is contained in:
parent
1196b3eb1d
commit
a302663b32
16 changed files with 3671 additions and 0 deletions
21
src/c/ops/reverse.h
Normal file
21
src/c/ops/reverse.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* 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 reverse( struct pso_pointer sequence);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue