Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1.       $ffi = \FFI::cdef(
  2.          "int printf(const char *format, ...);", // this is a regular C declaration
  3.          "libc.so.6");
  4.  
  5.       // call C's printf()
  6.       $ffi->printf("Hello %s!\n", "world");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement