*-in-c-type-name ( name -- * )


Vocabulary
alien.parser

Definition
IN: alien.parser

TUPLE: *-in-c-type-name { name read-only } ;


USING: kernel ;

IN: alien.parser

: *-in-c-type-name ( name -- * ) \ *-in-c-type-name boa throw ;


Methods
USING: accessors alien.parser sequences summary ;

M: *-in-c-type-name summary
name>> "Cannot define a C type “"
"” that ends with an asterisk (*)" surround ;