Cosmetic changes to all function arg alignments in jets/c

This commit is contained in:
Alex Higgins 2015-08-27 20:14:03 -05:00 committed by Raymond Pasco
parent fb4c04694e
commit c12e8bdb8d
21 changed files with 47 additions and 49 deletions

View File

@ -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);

View File

@ -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)

View File

@ -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) ) {

View File

@ -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);

View File

@ -7,8 +7,7 @@
/* functions
*/
u3_noun
u3qc_end(
u3_atom a,
u3qc_end(u3_atom a,
u3_atom b,
u3_atom c)
{

View File

@ -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);

View File

@ -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) ) {

View File

@ -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;

View File

@ -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;

View File

@ -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);

View File

@ -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);