Dépôt Heptagon avec modifications pour asynchrone
Go to file
Cédric Pasteur 2956e6feb4 Fix printing of arrays in C code
It should be 
  f(int a[5])
instead of 
  f(int *a)
because the second one does not scale for 
multidimensional arrays, eg
  g(int b[10][5]) is ok
but
  g(int **b) is not.
2010-09-03 15:27:58 +02:00
compiler Fix printing of arrays in C code 2010-09-03 15:27:58 +02:00
examples Wrote wrapper macros for C interoperability. 2010-07-29 10:43:32 +02:00
lib Added missing boolean operator: XOR. 2010-08-02 16:14:35 +02:00
test Correct Mapfold !! Or at least much more than before. 2010-08-24 11:07:05 +02:00
tools small print debugging tweaks. 2010-09-01 14:42:44 +02:00
.gitignore Updated .gitignore 2010-07-26 09:40:31 +02:00
heptc Heptc wrapper fix. 2010-08-29 23:50:50 +02:00