Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1/*
2 * utils.h
3 *
4 * little generally useful functions which aren't in any way special to PSSE.
5 *
6 * (c) 2019 Simon Brooke <simon@journeyman.cc>
7 * Licensed under GPL version 2.0, or, at your option, any later version.
8 */
9
10#ifndef __psse_utils_h
11#define __psse_utils_h
12
13int index_of( char c, const char *s );
14
15char *trim( char *s );
16
17#endif
int index_of(char c, const char *s)
Definition utils.c:15
char * trim(char *s)
Definition utils.c:23