Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
436 views

Difference between hsc2hs and c2hs?

What is the difference between hsc2hs and c2hs? I know what hsc2hs is a preprocessor but what does it exactly do? And c2hs can make Haskell modules from C-code, but do I need hsc2hs for this?
4
votes
2answers
217 views

How to use hsc2hs to bind to constants, functions and data structures?

i need a example how to use hsc2hs, i thought that when i write a header file like: // foo.h #define PI 3.14159 typedef struct { int i1; int i2; } foo; struct foo2 { int i1; int i2; ...
1
vote
1answer
454 views

Haskell cabal+hsc2hs

Can cabal use hsc2hs to create hs files? How? I didn't find an answer in the manuals, googling, nor in other projects (had my hopes up for gtk2hs but it turns out that it doesn't use cabal)
1
vote
2answers
442 views

Haskell: How do I get the values of #define-d constants?

In a Haskell program, what's the best way to use constants defined in C headers?