anttisalonen / cgen

cgen generates C interfaces from C++ headers
http://anttisalonen.github.com/cgen/
BSD 3-Clause "New" or "Revised" License
22 stars 6 forks source link

array is interpreted as element, not pointer #4

Open ghorn opened 12 years ago

ghorn commented 12 years ago

in the c code:

some_c_fun ( char x[256] )

x is read as char when it should probably be read as char*