代码搜索:zc
找到约 1,899 项符合「zc」的源代码
代码结果 1,899
www.eeworm.com/read/275562/4175222
zc types.zc
//[of]:description
//[c]Define types, provides utility functions for basic types
//[cf]
//[c]
//[of]:types
//[c]
public typedef mem = -> void
public typedef size = dword
public typedef object
www.eeworm.com/read/275562/4175223
zc memory.zc
//[of]:description
//[c]Utility functions to copy, compare memory blocks
//[cf]
//[of]:imports
//[c]
import "base/types"
import "c-types"
//[cf]
//[of]:types
//[c]
typedef bytes = [] byte
t
www.eeworm.com/read/275562/4175232
zc string.zc
//[of]:imports
//[c]
import "base/types"
import "base/memory"
import "base/memory-allocator"
//[cf]
//[c]
//[of]:globals
//[c]
//[c]The global empty string
//[c]
public def empty string :=
www.eeworm.com/read/275562/4175235
zc collection.zc
//[of]:description
//[c]Linked list of elements
//[c]
//[c]Full sub-classing is performed by implementing the following equates:
//[c] - equ first (c)
//[c] - equ last (c)
//[c] - equ each (c)
www.eeworm.com/read/275562/4175236
zc list.zc
//[of]:description
//[c]Linked list of pointers
//[cf]
//[of]:imports
//[c]
import "base/types"
import "base/memory-allocator"
import "collection/collection"
//[cf]
//[of]:structures
//[c]
www.eeworm.com/read/275562/4175239
zc dictionary.zc
//[of]:description
//[c]The hashtable class
//[c]
//[c]Abstract class for dictionaries. The class must be inherited to be used.
//[c]Implement the following methods:
//[c]- hash () returns the
www.eeworm.com/read/275562/4175240
zc vector.zc
//[of]:imports
//[c]
import "base/types"
import "base/memory"
import "base/memory-allocator"
//[cf]
//[of]:structures
//[c]
public struct vector
private allocated: size
private array: []
www.eeworm.com/read/275562/4175241
zc uri.zc
//[of]:imports
//[c]
import "base/types"
import "base/memory"
import "base/memory-allocator"
import "text/string"
import "text/string-buffer"
//[cf]
//[of]:structures
//[c]
public struct uri
www.eeworm.com/read/275562/4175242
zc malloc.zc
//[c]malloc - declarations and definitions for memory allocation functions
//[c]
import "base/types"
//[c]
//[c]Function prototypes
//[c]
public [name="c", call="__cdecl"]
typedef malloc size
www.eeworm.com/read/275562/4175243
zc stdio.zc
//=============================================================================
// stdio - definitions/declarations for standard I/O routines
//======================================================