all repos — nimisewi_c @ 44c234cfdf8588e5c53a9534cc2ee1c627682f7c

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/* struct to hold stuff useful for random index generation */
20struct nanpa_nimi {
21    int nanpa_nimi; /* number of words */
22    int pi_li_lon;  /* whether to insert 'pi' or not */
23    int nanpa_pi;   /* index to insert 'pi', if pi_li_lon is 1 */
24};
25
26void open_e_nanpa_sewi(void);
27
28void pana_e_nanpa_nimi(struct nanpa_nimi *nn);
29
30void pana_e_nanpa_pi_nimi_sewi(int *nanpa_sewi_mute,
31                               const int suli_nimi,
32                               struct nanpa_nimi *nn);
33
34const char *pana_e_nimi(const char *nimi_mute[],
35                        const int suli_pi_nimi_mute,
36                        const int nanpa_nimi);
37
38#endif /* NIMI_SEWI_H */