资源简介
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 明朝历史资料大全
相关资源
- linux源代码分析之内存管理
- AIX平台数据库迁移到Linux环境(真实环
- linux系统下基于QT的usb摄像头视频采集
- BES 快速入门手册
- 电脑日记 DailyPim4.51专业版
- RTL8188E的Linux驱动源码+移植调试步骤记
- CentOS 7 Linux Server Cookbook 2nd Edition.pdf
- vos2009 2.1.2.0 完美注册机linux
- Forxit Reader for Desktop Linux (FoxitReader
- linux文件系统操作系统课程设计
- 虚拟机安装Linux系统
- 老男孩Linux运维笔记--文字版
- LINUX内核源代码情景分析_完整完美版
- Essential Linux Device Drivers.pdf
- 《Linux基础千锤百炼》v2.pdf
- Linux API 帮助文档
- linux的git压缩包
- tcl8.5.12-src.tar.gz
- Linux内核源代码情景分析(全册高清带
- linux多人聊天室管理系统
- linux内核分析及各个版本kernel源码地址
- 浪潮英信服务器NF5280M4用户手册
- 老男孩Linux运维笔记--高清完整文字版
- Linux 0.11内核完全解析(含源码)
- Linux教程第四版孟庆昌牛欣源
- Linux 环境下,利用 Socket 通信实现网络
- 飞思卡尔 明远智睿 I.MX6核心板 I.MX6开
- Tiva TM4C123FH6PM中文数据手册
- UNIX-Linux系统管理技术手册(第四版)
- see mips run(英文版本)
评论
共有 条评论