mirror of
https://github.com/urbit/shrub.git
synced 2024-12-23 02:41:35 +03:00
Merge branches 'breach-20160113' and 'cleanup'
Restore correct first-parentage (a few days wrong is better than a few months) Remove an ignored empty file, lie less in talk doc
This commit is contained in:
commit
9963c0fe9f
@ -12,33 +12,40 @@
|
||||
u3_noun tez = u3_nul;
|
||||
|
||||
while ( 1 ) {
|
||||
c3_w meg_w;
|
||||
c3_w meg_w = 0;
|
||||
c3_y end_y;
|
||||
|
||||
if ( pos_w >= len_w ) {
|
||||
return u3kb_flop(tez);
|
||||
} else {
|
||||
meg_w = 0;
|
||||
|
||||
c3_y byt_y;
|
||||
while ( 1 ) {
|
||||
byt_y = u3r_byte(pos_w + meg_w, lub);
|
||||
|
||||
if ( (10 == byt_y) || (0 == byt_y) ) {
|
||||
break;
|
||||
} else meg_w++;
|
||||
c3_y byt_y;
|
||||
while ( 1 ) {
|
||||
if ( pos_w >= len_w ) {
|
||||
byt_y = 0;
|
||||
end_y = c3y;
|
||||
break;
|
||||
}
|
||||
byt_y = u3r_byte(pos_w + meg_w, lub);
|
||||
|
||||
if ((byt_y == 0) && ((pos_w + meg_w + 1) < len_w)) {
|
||||
return u3m_bail(c3__exit);
|
||||
if ( (10 == byt_y) || (0 == byt_y) ) {
|
||||
end_y = __(byt_y == 0);
|
||||
break;
|
||||
} else meg_w++;
|
||||
}
|
||||
|
||||
if ((byt_y == 0) && ((pos_w + meg_w + 1) < len_w)) {
|
||||
return u3m_bail(c3__exit);
|
||||
}
|
||||
|
||||
{
|
||||
c3_y* byts_y = alloca(meg_w);
|
||||
u3r_bytes(pos_w, meg_w, byts_y, lub);
|
||||
|
||||
if ( _(end_y) ) {
|
||||
return u3kb_flop(u3nc(u3i_bytes(meg_w, byts_y), tez));
|
||||
}
|
||||
|
||||
{
|
||||
c3_y* byts_y = alloca(meg_w);
|
||||
|
||||
u3r_bytes(pos_w, meg_w, byts_y, lub);
|
||||
tez = u3nc(u3i_bytes(meg_w, byts_y), tez);
|
||||
pos_w += (meg_w + 1);
|
||||
if ( pos_w >= len_w ) {
|
||||
return u3kb_flop(tez);
|
||||
}
|
||||
tez = u3nc(u3i_bytes(meg_w, byts_y), tez);
|
||||
pos_w += (meg_w + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user