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.
void foo(const gchar *a, ...) { do_something(); }
とは...どういう意味ですか?
...
それはglibでのみ動作しますか?
関数が柔軟な数の引数を持つことを可能にする可変長の引数リストです。これは標準の一部です。したがって、glib だけでなく、標準 C がサポートされている (またはこの機能自体がサポートされている) どこでも機能します。