From 1b355bcc95fe2bf45cfd27a446276b1067afb98b Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Wed, 1 Jul 2009 16:16:40 -0500 Subject: [PATCH] alien.structs: update docs to mention struct-arrays --- basis/alien/structs/structs-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/alien/structs/structs-docs.factor b/basis/alien/structs/structs-docs.factor index 2f7a7eadc8..c74fe22dfd 100644 --- a/basis/alien/structs/structs-docs.factor +++ b/basis/alien/structs/structs-docs.factor @@ -23,11 +23,11 @@ $nl } "C structure objects can be allocated by calling " { $link } " or " { $link malloc-object } "." $nl -"Arrays of C structures can be created by calling " { $link } " or " { $link malloc-array } ". Elements can be read and written using words named " { $snippet { $emphasis "type" } "-nth" } " and " { $snippet "set-" { $emphasis "type" } "-nth" } "; these words are automatically generated by " { $link POSTPONE: C-STRUCT: } "." ; +"Arrays of C structures can be created with the " { $vocab-link "struct-arrays" } " vocabulary." ; ARTICLE: "c-unions" "C unions" "A " { $snippet "union" } " in C defines a type large enough to hold its largest member. This is usually used to allocate a block of memory which can hold one of several types of values." { $subsection POSTPONE: C-UNION: } "C union objects can be allocated by calling " { $link } " or " { $link malloc-object } "." $nl -"Arrays of C unions can be created by calling " { $link } " or " { $link malloc-array } ". Elements can be read and written using words named " { $snippet { $emphasis "type" } "-nth" } " and " { $snippet "set-" { $emphasis "type" } "-nth" } "; these words are automatically generated by " { $link POSTPONE: C-UNION: } "." ; +"Arrays of C unions can be created with the " { $vocab-link "struct-arrays" } " vocabulary." ; \ No newline at end of file