On Tue, 18 Aug 2009, Fuzzy Wombat wrote: > I'm attempting to write some bindings to the functions in regex.h (I know > only applicable on POSIX systems) > and I'm running across an issue, that not withstanding I think my problem is > the 'restrict' keyword, which I cannot > find any documentation on as far as cython's usage. My question then would > be: Is this supported? and if so, what > is the appropriate syntax for using it?
No, Cython does not know about the restrict keyword. I bet using the same tricks one does for const would work here as well, if you need it. - Robert _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
