thin_pointer.ads
来自「用于进行gcc测试」· ADS 代码 · 共 23 行
ADS
23 行
with System;package Thin_Pointer is type Stream is array (Integer range <>) of Character; type Stream_Ptr is access Stream; for Stream_Ptr'Size use Standard'Address_Size; type Buf is record A : System.Address; end record; type Buf_Wrapper is record B : Buf; end record; type Buf_Ptr is access Buf_Wrapper; procedure Set_Buffer (AD : Buf_Ptr; Buffer : Stream_ptr);end Thin_Pointer;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?