aboutsummaryrefslogtreecommitdiff
path: root/src/index.c
AgeCommit message (Collapse)Author
2015-08-28one-true indentationIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=17537
2013-06-03declare unused parameters as suchIOhannes m zmölnig
rather than doing a dummy-usage svn path=/trunk/externals/zexy/; revision=17144
2012-12-19fixing unicode charactersIOhannes m zmölnig
now that Pd iuses UTF8, we can finally have hearts... svn path=/trunk/externals/zexy/; revision=16706
2011-10-03replaced &s_ with gensym()IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15490
2011-09-21fixed license boilerplate and UTF8 encodingIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=15327
2008-01-03run with "-pedantic" and "-std=c99": removed warningsIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=9113
2007-03-14updated the zexy help-system: all reference-patches (aka help-patches) are ↵IOhannes m zmölnig
now to be found in the ./reference/ folder and are named <path>-help.pd; removed a now superfluous class_sethelpsymbol from ./src/*.c; the ./examples/ folder is currently empty but will eventually be filled with zexy real-world examples svn path=/trunk/externals/zexy/; revision=7485
2006-11-12reduced warnings by properly declaring functions and avoidance ofIOhannes m zmölnig
variable shadowing svn path=/trunk/externals/zexy/; revision=6269
2006-04-05use unused variablesIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4815
2006-01-25removed the z_..._setup() functionIOhannes m zmölnig
made the setup_...() function in 0x7c0x7c0x7e.c non-static svn path=/trunk/externals/zexy/; revision=4494
2006-01-24split help-strings into shorter strings (made w32's pd crash)IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4484
2006-01-24made all possible (well, most) functions "static" to not interfere with ↵IOhannes m zmölnig
functions of the same name of other libraries svn path=/trunk/externals/zexy/; revision=4482
2006-01-23cleaned up code so we get hardly any warnings when compiling with "-Wall"IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=4473
2005-12-21removed C99-define-magic for verbose output:IOhannes m zmölnig
now we just make a static function z_verbose() that calls either verbose() or post() svn path=/trunk/externals/zexy/; revision=4266
2005-10-27when we add an item at a certain index that exceeds the number of elements,IOhannes m zmölnig
we resize the array to be able to hold the new index. use of "verbose()" svn path=/trunk/externals/zexy/; revision=3769
2005-06-30added more intelligent verbosityIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3273
2005-06-21default to 128 maxentries if 0 or a negative number is givenIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3228
2005-06-15oops, declaration after codeIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3176
2005-06-15included <string.h>IOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3174
2005-05-30improved performance (i think)IOhannes m zmölnig
added a lot of new functionality svn path=/trunk/externals/zexy/; revision=3095
2005-05-19hopefully fixed the makesource-process for other platformsIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=3025
2005-04-12code cleanupIOhannes m zmölnig
svn path=/trunk/externals/zexy/; revision=2737
2005-03-22zexy-2.0:IOhannes m zmölnig
- use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641