command
Version:
v0.1.3
Opens a new window with list of versions in this module.
Published: Apr 7, 2024
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
cgo の制約事項
cgo では以下がサポートされない。
可変長引数を持つ関数の代表例が printf()
であり、最初に cgo を試す際に大抵誰もが試す関数だと思うが
printf()
は、可変長引数を持っている関数であるため、そのまま C.printf()
とは呼べない。
マクロは実務現場では、かなり利用されるものであるが、 cgo ではそのまま呼べない。
sizeof演算子は、コンパイル時に展開されるものであるため、cgo ではそのまま呼べない。
利用する方法として、cgoヘッダにラッパー関数を定義しておいて、それを呼び出すというやり方が使える。
Documentation
¶
There is no documentation for this package.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.