Author: Maciej Fijalkowski <fij...@gmail.com> Branch: Changeset: r340:dc76fa41d703 Date: 2012-06-14 16:28 +0200 http://bitbucket.org/cffi/cffi/changeset/dc76fa41d703/
Log: (fijal, arigo) work on example diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -20,10 +20,18 @@ >>> from cffi import FFI >>> ffi = FFI() >>> ffi.cdef(""" - ... int printf(const char *format, ...); - ... """) - >>> C = ffi.rawload(None) # loads the entire C namespace - >>> C.printf("hi there, %s!\n", ffi.new("char[]", "world")); + ... int printf(const char *format, ...); // copy-pasted from the man page + ... """) + >>> C = ffi.dlopen(None) # loads the entire C namespace + >>> arg = ffi.new("char[]", "world") # equivalent to C code: char arg[] = "world"; + >>> C.printf("hi there, %s!\n", arg); # call printf + hi there, world! + >>> + +More documentation +------------------ + +See [More docs](https://bitbucket.org/xxx) for examples and supported features. Contact ------- _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit