Created
February 4, 2018 04:09
-
-
Save kesslern/6d215ec152587bd5128cf3cd59ed9556 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fun main(args: Array<String>) { | |
| ftw("./", staticCFunction(::test), 100) | |
| } | |
| fun test(arg1: CPointer<ByteVar>?, arg2: CPointer<stat>?, arg3: Int): Int { | |
| println(arg1?.toKString()) | |
| return 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment