aboutsummaryrefslogtreecommitdiff
path: root/f2char.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-20 18:32:25 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-20 18:32:25 +0000
commit4f8c7c28f8ece71d15ed28ae30f253725f1efa39 (patch)
treed84544a36bdcd8bfbee94176a8fff8b98b4eaf8b /f2char.c
parente35b59f84ac0cdf4e1e874321e79e10fecf95449 (diff)
update code format to pd-style: astyle --style=ansi --align-pointer=name *.c
svn path=/trunk/externals/moonlib/; revision=16427
Diffstat (limited to 'f2char.c')
-rw-r--r--f2char.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/f2char.c b/f2char.c
index e14c5cf..ed51465 100644
--- a/f2char.c
+++ b/f2char.c
@@ -1,5 +1,5 @@
/*
-Copyright (C) 2002 Antoine Rousseau
+Copyright (C) 2002 Antoine Rousseau
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -13,7 +13,7 @@ Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
@@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
typedef struct _f2char
{
t_object x_obj;
-}t_f2char;
+} t_f2char;
t_class *f2char_class;
@@ -30,24 +30,24 @@ void f2char_setup(void);
static void f2char_float(t_f2char *x,t_floatarg f)
{
- char s[2]={0};
-
- s[0]=(char)f;
- outlet_symbol(x->x_obj.ob_outlet,gensym(s));
+ char s[2]= {0};
+
+ s[0]=(char)f;
+ outlet_symbol(x->x_obj.ob_outlet,gensym(s));
}
static void *f2char_new(void)
-{
- t_f2char *x = (t_f2char *)pd_new(f2char_class);
- outlet_new(&x->x_obj,&s_symbol);
- return (void *)x;
+{
+ t_f2char *x = (t_f2char *)pd_new(f2char_class);
+ outlet_new(&x->x_obj,&s_symbol);
+ return (void *)x;
}
void f2char_setup(void)
{
- f2char_class = class_new(gensym("f2char"),(t_newmethod)f2char_new,
- 0, sizeof(t_f2char), 0, 0);
+ f2char_class = class_new(gensym("f2char"),(t_newmethod)f2char_new,
+ 0, sizeof(t_f2char), 0, 0);
- class_addfloat(f2char_class, f2char_float);
+ class_addfloat(f2char_class, f2char_float);
}