代码搜索:zc

找到约 1,899 项符合「zc」的源代码

代码结果 1,899
www.eeworm.com/read/275562/4175201

zc gtkcheckbutton.zc

import "glib/glib" import "gtk/gtkobject" import "gtk/gtkwidget" import "gtk/gtktogglebutton" public [name="c"] struct GtkCheckButton : local GtkToggleButton; end struct GtkCheckButtonClas
www.eeworm.com/read/275562/4175202

zc gtkmenubar.zc

import "glib/glib" import "gtk/gtkobject" import "gtk/gtkwidget" import "gtk/gtkcontainer" import "gtk/gtkmenushell" public [name="c"] struct GtkMenuBar : local GtkMenuShell; end struct G
www.eeworm.com/read/275562/4175211

zc pango.zc

public import "pango/pango-attributes" //import "pango/pango-break" import "pango/pango-context" import "pango/pango-coverage" //import "pango/pango-engine" //import "pango/pango-enum-types" import
www.eeworm.com/read/275562/4175212

zc stat.zc

import "base/types" public typedef mode_t = dword public [name="c"] import func mkdir (string, mode_t) : int end
www.eeworm.com/read/275562/4175213

zc index.zc

//[c]Linux Specific //[c] //[l]:unistd:unistd.zc //[l]:stat:stat.zc
www.eeworm.com/read/275562/4175214

zc dirent.zc

import "base/types" import "unistd" public [name="c"] public typedef ino_t = dword struct dir dummy : int end struct dirent d_ino : ino_t d_off : off_t d_reclen : word d_type
www.eeworm.com/read/275562/4175215

zc unistd.zc

import "base/types" public [name="c"] equ STDIN_FILENO = 0 equ STDOUT_FILENO = 1 equ STDERR_FILENO = 2 typedef long int = long typedef ssize_t = long typedef size_t = qword typedef gid
www.eeworm.com/read/275562/4175217

zc file.zc

//[of]:description //[c]All functions to manipulate files //[cf] //[of]:imports //[c] import "base/types" import "base/memory-allocator" import "text/array-of-strings" import "libc/stdio" imp
www.eeworm.com/read/275562/4175219

zc io.zc

// For portability issues, these functions are still written in C import "base/types" public [name="c"] import func file_exists ([] char) : int import func file_size ([] char) : size import
www.eeworm.com/read/275562/4175221

zc numbers.zc

//[c]numbers - utility functions //[c] public func max (x: dword, y: dword) if x > y return x else return y end end //[c] public func min (x: dword, y: dword) if x < y retu