blob: a9855165f59c3d4c254b418f58bb5d0c9b7c89bf [file] [log] [blame]
/*
* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef STRING_STREAM_H
#define STRING_STREAM_H
/*
* Support for a stream stream in 'C', which is appened to via an sprintf-like
* function.
*/
#include <stdarg.h>
#include <stdint.h>
typedef struct {
char *data;
size_t length;
} sstream_t;
void ssinit(sstream_t *stream);
void ssfree(sstream_t *stream);
/* Returns the number of bytes added to the stream. */
int ssvprintf(sstream_t *sstream, const char *format, va_list args);
int ssprintf(sstream_t *sstream, const char *format, ...);
#endif