3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

C言語のヘッダーファイルをD言語用に変換する dstep の使い方

Posted at

はじめに

D言語からC言語のライブラリを使うにあたり、dppdstep などのツールを使ってヘッダーを変換するのが簡単です。

というわけで、使うのが簡単な dstep というツールを使い方メモです。
CのヘッダーファイルとDのモジュールは大体1対1対応になるので、ファイル毎に変換するなら dstep を使うのが恐らく一番簡単です。

概要

使い方

dub run dstep -- libapi.h -o source/libapi.d

ヘッダーファイルを用意して第1引数に指定、第2引数に -o オプションと出力先ファイルを指定、だけです。

補足

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?