Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ラップしているライブラリで見つかった構造体をモデル化しようとしています。構造体には、次のようなポインターへのポインターがあります。
typedef struct item_t { char* name; } typedef struct container_t { item_t **items; }
Python のctypesモジュールのStructureクラスでモデル化する場合、可変長のポインターの配列をどのように表現しますか?
ctypes
Structure