]> gitweb.factorcode.org Git - factor.git/blob - basis/gobject-introspection/common/common.factor
Switch to https urls
[factor.git] / basis / gobject-introspection / common / common.factor
1 ! Copyright (C) 2010 Anton Gorenko.
2 ! See https://factorcode.org/license.txt for BSD license.
3 USING: namespaces sequences ;
4 IN: gobject-introspection.common
5
6 SYMBOL: current-namespace-name
7
8 SYMBOL: implement-structs
9 implement-structs [ V{ } ] initialize
10
11 : implement-struct? ( c-type -- ? )
12     implement-structs get-global member? ;