/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/java/preproc_constants_runme.java
18 строк
520 B
Olly Betts
Improve handling of zero bytes in string literals
30 авг 2024, 02:07
30 авг 2024, 02:07
61e54ab
Код
Авторство
О чём код?
import preproc_constants.*; public class preproc_constants_runme { static { try { System.loadLibrary("preproc_constants"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); System.exit(1); } } public static void main(String argv[]) { if (preproc_constants.CONST_STRING4 != "zer\0zer\0") throw new RuntimeException("Failed"); } }