资源简介
Go程序设计语言源码
代码片段和文件信息
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
// See page 362.
//
// The version of this program that appeared in the first and second
// printings did not comply with the proposed rules for passing
// pointers between Go and C described here:
// https://github.com/golang/proposal/blob/master/design/12416-cgo-pointers.md
//
// The version below which appears in the third printing
// has been corrected. See bzip2.go for explanation.
//!+
/* This file is gopl.io/ch13/bzip/bzip2.c */
/* a simple wrapper for libbzip2 suitable for cgo. */
#include
int bz2compress(bz_stream *s int action
char *in unsigned *inlen char *out unsigned *outlen) {
s->next_in = in;
s->avail_in = *inlen;
s->next_out = out;
s->avail_out = *outlen;
int r = BZ2_bzCompress(s action);
*inlen -= s->avail_in;
*outlen -= s->avail_out;
s->next_in = s->next_out = NULL;
return r;
}
//
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-03-16 14:08 Go程序设计语言源码\
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch1\
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch10\
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch10\cross\
文件 333 2019-10-22 03:44 Go程序设计语言源码\ch10\cross\main.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch10\jpeg\
文件 1016 2019-10-22 03:44 Go程序设计语言源码\ch10\jpeg\main.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch11\
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch11\echo\
文件 716 2019-10-22 03:44 Go程序设计语言源码\ch11\echo\echo.go
文件 1023 2019-10-22 03:44 Go程序设计语言源码\ch11\echo\echo_test.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch11\storage1\
文件 1110 2019-10-22 03:44 Go程序设计语言源码\ch11\storage1\storage.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch11\storage2\
文件 1232 2019-10-22 03:44 Go程序设计语言源码\ch11\storage2\quota_test.go
文件 1195 2019-10-22 03:44 Go程序设计语言源码\ch11\storage2\storage.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch11\word1\
文件 437 2019-10-22 03:44 Go程序设计语言源码\ch11\word1\word.go
文件 893 2019-10-22 03:44 Go程序设计语言源码\ch11\word1\word_test.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch11\word2\
文件 628 2019-10-22 03:44 Go程序设计语言源码\ch11\word2\word.go
文件 3254 2019-10-22 03:44 Go程序设计语言源码\ch11\word2\word_test.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch12\
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch12\display\
文件 2366 2019-10-22 03:44 Go程序设计语言源码\ch12\display\display.go
文件 5900 2019-10-22 03:44 Go程序设计语言源码\ch12\display\display_test.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch12\format\
文件 1278 2019-10-22 03:44 Go程序设计语言源码\ch12\format\format.go
文件 641 2019-10-22 03:44 Go程序设计语言源码\ch12\format\format_test.go
目录 0 2020-03-16 14:08 Go程序设计语言源码\ch12\methods\
文件 621 2019-10-22 03:44 Go程序设计语言源码\ch12\methods\methods.go
............此处省略279个文件信息
- 上一篇:斐波那契fibonacci数列 函数
- 下一篇:golang 操作ftp
相关资源
- 机器学习系统设计.pdf
- 软件设计师考试真题2010-2016合集
- Head First 设计模式中文版.pdf
- MongodbSample.rar
- 《计算机辅助几何设计与非均匀有理
- 软考历年真题中级:软件设计师
- Hi3520DV300硬件设计参考原理图和PCB参考
- 重构_改善既有代码的设计.rar
- MongoDB管理与开发精要.王文龙(详细书
- 图割和分水岭变换GUI设计及评价函数
- 农资监管系统的设计
- CMOS电路模拟与设计——基于Hspice
- 软件设计文档总汇
- 回归分析与实验设计 design and analysi
- markmMan(马克鳗) for mac 2.7.21 破解版
- 迷宫 课程设计
- OpenGL游戏程序设计+源码
- 超智能体YJango
- lingo9破解版
- zw_C面向对象程序设计(谭浩强主编
- LearningOpenCV_Code.rar
- 图灵程序设计丛书 函数式编程思维
- MongoDB电子考试系统
- 大学简单的网页设计作业综合.rar
- 汽车焊装夹具设计.pdf
- 火车订票系统数据库课程设计
- 软件设计师讲义.rar
- CAD课设报告——秒表的设计
- 基于51单片机的1-40Mhz正弦波发生器仿
- 程序设计常用的图片素材
评论
共有 条评论