all repos — nimisewi_c @ e7e4e22b69a0c9965c2d4f96903ae647165e99d3

simple random toki pona phrase generator

nimisewi.h (view raw)

 1/* Copyright (c) 2021, la-ninpre
 2 * 
 3 * Permission to use, copy, modify, and/or distribute this software for any
 4 * purpose with or without fee is hereby granted, provided that the above
 5 * copyright notice and this permission notice appear in all copies.
 6 * 
 7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 */
15
16#ifndef NIMI_SEWI_H
17#define NIMI_SEWI_H
18
19#include <stdlib.h>
20
21/* struct to hold stuff useful for random index generation */
22struct nanpa_nimi {
23    int nanpa_nimi; /* number of words - 1 */
24    int pi_li_lon;  /* whether to insert 'pi' or not */
25    int nanpa_pi;   /* index to insert 'pi', if pi_li_lon is 1 */
26    int *nanpa_sewi_nimi; /* random indices of words */
27    size_t suli_pi_nimi_sewi; /* length of generated phrase */
28};
29
30char *nimi_sewi(void);
31
32void weka_e_nimi_sewi(char *nimi_sewi);
33
34#endif /* NIMI_SEWI_H */