Ada 编程/库/Interfaces.C.Strings
外观
此语言功能从 Ada 95 开始可用。
接口.C.Strings 是 预定义语言环境 自 Ada 95 以来的一部分。
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <[email protected]> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual -- -------------------------------------------------------------------------package
Interfaces.C.Stringsis
pragma
Preelaborate (Strings);type
char_array_accessis
access
all
char_array;type
chars_ptris
private
;pragma
Preelaborable_Initialization (chars_ptr);type
chars_ptr_arrayis
array
(size_trange
<>)of
aliased
chars_ptr; Null_Ptr :constant
chars_ptr;function
To_Chars_Ptr (Item :in
char_array_access; Nul_Check :in
Boolean := False)return
chars_ptr;function
New_Char_Array (Chars :in
char_array)return
chars_ptr;function
New_String (Str :in
String)return
chars_ptr;procedure
Free (Item :in
out
chars_ptr); Dereference_Error :exception
;function
Value (Item :in
chars_ptr)return
char_array;function
Value (Item :in
chars_ptr; Length :in
size_t)return
char_array;function
Value (Item :in
chars_ptr)return
String;function
Value (Item :in
chars_ptr; Length :in
size_t)return
String;function
Strlen (Item :in
chars_ptr)return
size_t;procedure
Update (Item :in
chars_ptr; Offset :in
size_t; Chars :in
char_array; Check :in
Boolean := True);procedure
Update (Item :in
chars_ptr; Offset :in
size_t; Str :in
String; Check :in
Boolean := True); Update_Error :exception
;private
pragma
Import (Ada, chars_ptr);pragma
Import (Ada, Null_Ptr);end
Interfaces.C.Strings;
外部示例
[编辑源代码]- 在以下位置搜索 示例
Interfaces.C.Strings
:Rosetta Code,GitHub (gists),任何 Alire 包 或 本维基教科书。 - 在以下位置搜索与
Interfaces.C.Strings
相关的 帖子:Stack Overflow,comp.lang.ada 或 任何与 Ada 相关的页面。
FSF GNAT
- 规范:i-cstrin.ads
- 主体:i-cstrin.adb
drake