mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 22:52:01 +00:00
9 lines
161 B
Python
9 lines
161 B
Python
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
import sys
|
|
sys.path.append('.')
|
|
|
|
from example.issues import print_cchar
|
|
|
|
print_cchar("const char *")
|