mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 20:04:09 +03:00
Cosmetic changes to all function arg alignments in jets/c
This commit is contained in:
parent
fb4c04694e
commit
c12e8bdb8d
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_cap(
|
||||
u3_atom a)
|
||||
u3qc_cap(u3_atom a)
|
||||
{
|
||||
c3_w met_w = u3r_met(0, a);
|
||||
|
||||
|
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_cut(
|
||||
u3_atom a,
|
||||
u3qc_cut(u3_atom a,
|
||||
u3_atom b,
|
||||
u3_atom c,
|
||||
u3_atom d)
|
||||
|
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_dor(
|
||||
u3_atom a,
|
||||
u3qc_dor(u3_atom a,
|
||||
u3_atom b)
|
||||
{
|
||||
if ( c3y == u3r_sing(a, b) ) {
|
||||
|
@ -7,7 +7,8 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_dvr(u3_atom a, u3_atom b)
|
||||
u3qc_dvr(u3_atom a,
|
||||
u3_atom b)
|
||||
{
|
||||
if ( 0 == b) {
|
||||
return u3m_bail(c3__exit);
|
||||
|
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_end(
|
||||
u3_atom a,
|
||||
u3qc_end(u3_atom a,
|
||||
u3_atom b,
|
||||
u3_atom c)
|
||||
{
|
||||
|
@ -7,7 +7,9 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_lsh(u3_atom a, u3_atom b, u3_atom c)
|
||||
u3qc_lsh(u3_atom a,
|
||||
u3_atom b,
|
||||
u3_atom c)
|
||||
{
|
||||
if ( !_(u3a_is_cat(a)) || (a >= 32) ) {
|
||||
return u3m_bail(c3__fail);
|
||||
@ -57,7 +59,9 @@
|
||||
}
|
||||
}
|
||||
u3_noun
|
||||
u3kc_lsh(u3_noun a, u3_noun b, u3_noun c)
|
||||
u3kc_lsh(u3_noun a,
|
||||
u3_noun b,
|
||||
u3_noun c)
|
||||
{
|
||||
u3_noun d = u3qc_lsh(a, b, c);
|
||||
|
||||
|
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_met(
|
||||
u3_atom a,
|
||||
u3qc_met(u3_atom a,
|
||||
u3_atom b)
|
||||
{
|
||||
if ( !_(u3a_is_cat(a)) || (a >= 32) ) {
|
||||
|
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_peg(
|
||||
u3_atom a,
|
||||
u3qc_peg(u3_atom a,
|
||||
u3_atom b)
|
||||
{
|
||||
u3_atom c, d, e, f, g, h;
|
||||
|
12
jets/c/po.c
12
jets/c/po.c
@ -7,7 +7,8 @@
|
||||
// good old linear search
|
||||
//
|
||||
static u3_noun
|
||||
_po_find(u3_noun buf, u3_noun a)
|
||||
_po_find(u3_noun buf,
|
||||
u3_noun a)
|
||||
{
|
||||
if ( !_(u3a_is_cat(a)) ) {
|
||||
return u3_nul;
|
||||
@ -32,8 +33,7 @@
|
||||
}
|
||||
|
||||
u3_noun
|
||||
u3wcp_ins(
|
||||
u3_noun cor)
|
||||
u3wcp_ins(u3_noun cor)
|
||||
{
|
||||
u3_noun x, a, buf;
|
||||
|
||||
@ -48,8 +48,7 @@
|
||||
}
|
||||
}
|
||||
u3_noun
|
||||
u3wcp_ind(
|
||||
u3_noun cor)
|
||||
u3wcp_ind(u3_noun cor)
|
||||
{
|
||||
u3_noun x, a, buf;
|
||||
|
||||
@ -65,8 +64,7 @@
|
||||
}
|
||||
|
||||
u3_noun
|
||||
u3wcp_tos(
|
||||
u3_noun cor)
|
||||
u3wcp_tos(u3_noun cor)
|
||||
{
|
||||
u3_noun x, a, buf;
|
||||
|
||||
|
@ -7,7 +7,8 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_pow(u3_atom a, u3_atom b)
|
||||
u3qc_pow(u3_atom a,
|
||||
u3_atom b)
|
||||
{
|
||||
if ( !_(u3a_is_cat(b)) ) {
|
||||
return u3m_bail(c3__fail);
|
||||
|
10
jets/c/rsh.c
10
jets/c/rsh.c
@ -7,8 +7,7 @@
|
||||
/* functions
|
||||
*/
|
||||
u3_noun
|
||||
u3qc_rsh(
|
||||
u3_atom a,
|
||||
u3qc_rsh(u3_atom a,
|
||||
u3_atom b,
|
||||
u3_atom c)
|
||||
{
|
||||
@ -40,8 +39,7 @@
|
||||
}
|
||||
}
|
||||
u3_noun
|
||||
u3wc_rsh(
|
||||
u3_noun cor)
|
||||
u3wc_rsh(u3_noun cor)
|
||||
{
|
||||
u3_noun a, b, c;
|
||||
|
||||
@ -58,7 +56,9 @@
|
||||
}
|
||||
}
|
||||
u3_noun
|
||||
u3kc_rsh(u3_noun a, u3_noun b, u3_noun c)
|
||||
u3kc_rsh(u3_noun a,
|
||||
u3_noun b,
|
||||
u3_noun c)
|
||||
{
|
||||
u3_noun d = u3qc_rsh(a, b, c);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user