summaryrefslogtreecommitdiff
path: root/testing/cffi0/snippets/setuptools_module/snip_setuptools_verify.py
blob: e8a867ecf0cf75df025b73b5dcf3bd2f72b344c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

from cffi import FFI
import sys

ffi = FFI()
ffi.cdef("""     // some declarations from the man page
    struct passwd {
        char *pw_name;
        ...;
    };
    struct passwd *getpwuid(int uid);
""")
C = ffi.verify("""   // passed to the real C compiler
#include <sys/types.h>
#include <pwd.h>
""", libraries=[],    # or a list of libraries to link with
     force_generic_engine=hasattr(sys, '_force_generic_engine_'))