From 739a8290a8b05645a2d055aed8e5eb76ba2e24e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 28 Aug 2015 17:55:26 +0000 Subject: one-true indentation svn path=/trunk/externals/zexy/; revision=17537 --- src/prime.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'src/prime.c') diff --git a/src/prime.c b/src/prime.c index 66ffb49..7acd9c4 100644 --- a/src/prime.c +++ b/src/prime.c @@ -1,4 +1,4 @@ -/* +/* * prime: get the n-th prime number * * (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem) @@ -7,12 +7,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ @@ -34,12 +34,12 @@ static void prime_float(t_prime *x, t_float f) unsigned int max_divisor; unsigned int divisor=1; - if (f<2){ + if (f<2) { outlet_float(x->x_obj.ob_outlet, 0.0); return; } - if (!(i%2)){ + if (!(i%2)) { outlet_float(x->x_obj.ob_outlet, (t_float)(i==2)); return; } @@ -70,11 +70,12 @@ static void prime_help(t_prime*x) } -void prime_setup(void) { +void prime_setup(void) +{ prime_class = class_new(gensym("prime"), - (t_newmethod)prime_new, - 0, sizeof(t_prime), - CLASS_DEFAULT, 0); + (t_newmethod)prime_new, + 0, sizeof(t_prime), + CLASS_DEFAULT, 0); class_addfloat(prime_class, prime_float); class_addmethod(prime_class, (t_method)prime_help, gensym("help"), A_NULL); -- cgit v1.2.1