2013-09-29 00:21:18 +04:00
|
|
|
/* j/6/flan.c
|
|
|
|
**
|
|
|
|
** This file is in the public domain.
|
|
|
|
*/
|
|
|
|
#include "all.h"
|
2014-09-04 07:10:43 +04:00
|
|
|
|
2013-09-29 00:21:18 +04:00
|
|
|
|
|
|
|
/* functions
|
|
|
|
*/
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun
|
|
|
|
u3_cqf_flan(
|
|
|
|
u3_noun bos,
|
|
|
|
u3_noun nif)
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
2014-11-05 04:18:47 +03:00
|
|
|
if ( c3y == u3_cr_sing(1, u3h(bos)) ) {
|
2014-09-06 00:13:24 +04:00
|
|
|
if ( (u3_nul == u3t(bos)) ) {
|
|
|
|
return u3k(nif);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
2014-09-06 00:13:24 +04:00
|
|
|
else return u3k(bos);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-11-05 04:18:47 +03:00
|
|
|
if ( c3y == u3_cr_sing(1, u3h(nif)) ) {
|
2014-09-06 00:13:24 +04:00
|
|
|
if ( (u3_nul == u3t(nif)) ) {
|
|
|
|
return u3k(bos);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
2014-09-06 00:13:24 +04:00
|
|
|
else return u3k(nif);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-09-06 00:13:24 +04:00
|
|
|
return u3nq
|
2014-08-21 01:18:34 +04:00
|
|
|
(6,
|
2014-09-06 00:13:24 +04:00
|
|
|
u3k(bos),
|
|
|
|
u3k(nif),
|
2014-11-05 04:18:47 +03:00
|
|
|
u3nc(1, c3n));
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun
|
|
|
|
u3_cwf_flan(
|
|
|
|
u3_noun cor)
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun bos, nif;
|
2013-09-29 00:21:18 +04:00
|
|
|
|
2014-11-05 04:18:47 +03:00
|
|
|
if ( c3n == u3_cr_mean(cor, u3_cv_sam_2, &bos, u3_cv_sam_3, &nif, 0) ) {
|
2014-09-06 00:13:24 +04:00
|
|
|
return u3_cm_bail(c3__fail);
|
2013-09-29 00:21:18 +04:00
|
|
|
} else {
|
2014-09-06 00:13:24 +04:00
|
|
|
return u3_cqf_flan(bos, nif);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|