完整的网站代码,可直接运行,适合作为毕业设计参考
2019-12-21 19:43:38 2.4MB asp 网站设计 毕业设计 完整代码
1
FFT在STM32处理器上的实现完整代码,可以直接运行在STM32系列芯片上
2019-12-21 19:43:25 1.66MB FFT STM32
1
基于SSH的网上书城完整代码包括后台管理
2019-12-21 19:42:23 23.08MB SSH
1
/* cole - A free C OLE library. cole_extract - Extract a file from a filesystem. Copyright 1998, 1999 Roberto Arturo Tena Sanchez This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* Arturo Tena */ #include /* To compile this file outside cole source tree, you must include here instead */ #include "cole.h" #define PRGNAME "iOLE" #define BUFFER_SIZE 128 int main(int argc, char **argv) { COLEFS *cfs; COLEFILE *cf; COLERRNO colerrno; char buffer[BUFFER_SIZE]; size_t char_read; if (argc != 3) { fprintf(stderr, "cole_extract. Extract a file from a " "filesystem to the standard output.\n" "Usage: "PRGNAME" \n" " FILE - File with the filesystem.\n" " INFILE - Filename of the file to extract.\n"); exit(1); } printf("%s",argv[1]); cfs = cole_mount(argv[1], &colerrno); if (cfs == NULL) { cole_perror(PRGNAME, colerrno); exit(1); } cf = cole_fopen(cfs, argv[2], &colerrno); if (cf == NULL) { cole_perror(PRGNAME, colerrno); cole_umount(cfs, NULL); exit(1); } while ((char_read = cole_fread(cf, buffer, BUFFER_SIZE, &colerrno))) { if (fwrite(buffer, 1, char_read, stdout) != char_read) { break; } } if (!cole_feof(cf)) { cole_perror(PRGNAME, colerrno); cole_umount(cfs, NULL); exit(1); } if (cole_fclose(
2019-12-21 19:42:02 173KB ole格式解析代码
1
《新剑侠情缘》完整代码,本代码是JS版本。你可以在你的网站部署该游戏。仅供学习交流!
2019-12-21 19:40:05 14.85MB 《新剑侠情缘》 完整代码
1
有完整的代码程序,程序可运行,带有配套论文,和数据库,一键下载完整课设你值得选择
2019-12-21 19:39:09 8.59MB html设计 课程设计 论文
1
此文件包含完整的代码,只需根据个人车模的不同调整其中中间参数即可,很方便的。
2019-12-21 19:37:44 431KB 飞思卡尔 电磁 代码
1
该资源包括android前端和后台服务器的代码,实现了头像的上传和裁剪,上传各种文件,文件的在线预览和下载。
2019-12-21 19:37:21 3.95MB android 上传 下载
1
图书馆借阅管理系统,我们刚自己做的,能运营的代码,完整实验报告,都是你需要的~
2019-12-21 19:36:34 294KB C 图书馆借阅管理
1
完整代码,还有实验报告,这么好, 你绝对需要的
2019-12-21 19:36:34 234KB C 马踏棋盘
1