shrub/include/g/n.h

49 lines
1.2 KiB
C
Raw Normal View History

2014-09-04 07:44:53 +04:00
/* include/g/n.h
**
** This file is in the public domain.
*/
/** Generic computation.
**/
2014-09-06 00:13:24 +04:00
/* u3_cn_nock_on(): produce .*(bus fol).
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_nock_on(u3_noun bus, u3_noun fol);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_slam_on(): produce (gat sam).
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_slam_on(u3_noun gat, u3_noun sam);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_kick_on(): fire `gat` without changing the sample.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_kick_on(u3_noun gat);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_nock_un(): produce .*(bus fol), as ++toon.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_nock_un(u3_noun bus, u3_noun fol);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_slam_un(): produce (gat sam), as ++toon.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_slam_un(u3_noun gat, u3_noun sam);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_nock_in(): produce .*(bus fol), as ++toon, in namespace.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_nock_in(u3_noun fly, u3_noun bus, u3_noun fol);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_slam_in(): produce (gat sam), as ++toon, in namespace.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_slam_in(u3_noun fly, u3_noun gat, u3_noun sam);
2014-09-04 07:44:53 +04:00
2014-09-06 00:13:24 +04:00
/* u3_cn_nock_an(): as slam_in(), but with empty fly.
2014-09-04 07:44:53 +04:00
*/
2014-09-06 00:13:24 +04:00
u3_noun
u3_cn_nock_an(u3_noun bus, u3_noun fol);
2014-09-04 07:44:53 +04:00