资源简介
m4 for linux,安装ucarp时要用到。
代码片段和文件信息
/* Formatted output to strings.
Copyright (C) 1999 2002 2006 2009-2011 Free Software Foundation Inc.
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 3 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. 51 Franklin Street Fifth Floor Boston MA 02110-1301 USA. */
#include
/* Specification. */
#include “vasnprintf.h“
#include
char *
asnprintf (char *resultbuf size_t *lengthp const char *format ...)
{
va_list args;
char *result;
va_start (args format);
result = vasnprintf (resultbuf lengthp format args);
va_end (args);
return result;
}
- 上一篇:MINPET2.02
- 下一篇:DataFocus 明朝历史资料大全
相关资源
- 联想H61主板BIOS升级F9KT58AUS支持22NM.i
- uboot到linux logo显示不间断 补丁
- UNIX/LINUX编程实践教程的源码
- Linux任务管理器
- linux应用层的华容道游戏源代码
- ubuntu9.10 可加载内核模块和字符设备驱
- MP3文件ID3v2ID3v2APEv2标签读取
- 操作系统实验——虚存管理实验
- linux下的发包工具sendip
- 尚观培训linux许巍关于c 的笔记和讲义
- 尚观培训linux董亮老师关于数据结构的
- linux 线程池源码 c 版
- linux C 电梯程序练习
- linux下用多进程同步方法解决生产者
- Linux 操作系统实验(全)
- Linux From Scratch 中文手册
- linux 网络实验 ftp程序
- Linux命令大全离线版&在线版
- 操作系统共享内存实验
- dos 下运行Linux 命令--gnu_utils
- linux 0.12内核源代码
- linux简易shell C实现
- linux实验报告及心得体会
- 基于GTK的Linux环境下的简易任务管理器
- linux扫雷游戏代码
- CAN Linux驱动代码
- Linux系统教材
- 联想启天M4350 BIOS升级文件
- intel 82579LM 网卡驱动Linux系统版 v1.9.
- SA1110处理器掌上电脑液晶显示器设计
评论
共有 条评论