2013-09-29 00:21:18 +04:00
|
|
|
/* j/6/flor.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-04 01:33:18 +04:00
|
|
|
u2_noun
|
2014-09-03 07:36:29 +04:00
|
|
|
u2_cqf_flor(
|
2014-09-04 01:33:18 +04:00
|
|
|
u2_noun bos,
|
|
|
|
u2_noun nif)
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
2014-08-21 01:18:34 +04:00
|
|
|
if ( u2_yes == u2_cr_sing(1, u2h(bos)) ) {
|
|
|
|
if ( (u2_nul == u2t(bos)) ) {
|
|
|
|
return u2k(bos);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
2014-08-21 01:18:34 +04:00
|
|
|
else return u2k(nif);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-08-21 01:18:34 +04:00
|
|
|
if ( u2_yes == u2_cr_sing(1, u2h(nif)) ) {
|
|
|
|
if ( (u2_nul == u2t(nif)) ) {
|
|
|
|
return u2k(nif);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
2014-08-21 01:18:34 +04:00
|
|
|
else return u2k(bos);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-08-21 01:18:34 +04:00
|
|
|
return u2nq
|
|
|
|
(6,
|
|
|
|
u2k(bos),
|
|
|
|
u2nc(1, u2_yes),
|
|
|
|
u2k(nif));
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-04 01:33:18 +04:00
|
|
|
u2_noun
|
2014-09-03 09:46:55 +04:00
|
|
|
u2_cwf_flor(
|
2014-09-04 01:33:18 +04:00
|
|
|
u2_noun cor)
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
|
|
|
u2_noun bos, nif;
|
|
|
|
|
2014-08-21 01:18:34 +04:00
|
|
|
if ( u2_no == u2_cr_mean(cor, u2_cv_sam_2, &bos, u2_cv_sam_3, &nif, 0) ) {
|
|
|
|
return u2_cm_bail(c3__fail);
|
2013-09-29 00:21:18 +04:00
|
|
|
} else {
|
2014-09-03 07:36:29 +04:00
|
|
|
return u2_cqf_flor(bos, nif);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|