Commit 87e9451e authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Include stdarg.h for va_list

parent 7ad207fb
#ifndef _HIREDIS_FORMAT_H #ifndef _HIREDIS_FORMAT_H
#define _HIREDIS_FORMAT_H 1 #define _HIREDIS_FORMAT_H 1
#include <stdarg.h>
int redis_format_vcommand(char **target, const char *format, va_list ap); int redis_format_vcommand(char **target, const char *format, va_list ap);
int redis_format_command(char **target, const char *format, ...); int redis_format_command(char **target, const char *format, ...);
int redis_format_command_argv(char **target, int argc, const char **argv, const size_t *argvlen); int redis_format_command_argv(char **target, int argc, const char **argv, const size_t *argvlen);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment