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/operating_system.c | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'src/operating_system.c') diff --git a/src/operating_system.c b/src/operating_system.c index a02b406..4d58466 100644 --- a/src/operating_system.c +++ b/src/operating_system.c @@ -1,4 +1,4 @@ -/* +/* * operating_system : get currently used OS * * (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 . */ @@ -27,8 +27,7 @@ MESSAGE OPERATING_SYSTEM: simple and easy static t_class *operating_system_class; -typedef struct _operating_system -{ +typedef struct _operating_system { t_object x_obj; } t_operating_system; @@ -50,7 +49,8 @@ static void operating_system_bang(t_operating_system *x) static void *operating_system_new(void) { - t_operating_system *x = (t_operating_system *)pd_new(operating_system_class); + t_operating_system *x = (t_operating_system *)pd_new( + operating_system_class); outlet_new(&x->x_obj, 0); return (x); } @@ -62,10 +62,12 @@ static void operating_system_help(t_operating_system*x) void operating_system_setup(void) { - operating_system_class = class_new(gensym("operating_system"), (t_newmethod)operating_system_new, + operating_system_class = class_new(gensym("operating_system"), + (t_newmethod)operating_system_new, 0, sizeof(t_operating_system), 0, A_NULL); - + class_addbang (operating_system_class, operating_system_bang); - class_addmethod(operating_system_class, (t_method)operating_system_help, gensym("help"), A_NULL); + class_addmethod(operating_system_class, (t_method)operating_system_help, + gensym("help"), A_NULL); zexy_register("operating_system"); } -- cgit v1.2.1