libvirt/src/buf.h

52 lines
1.4 KiB
C
Raw Normal View History

2007-03-15 17:30:04 +00:00
/*
2007-06-26 22:21:22 +00:00
* buf.h: buffers for libvirt
2007-03-15 17:30:04 +00:00
*
* Copyright (C) 2005-2008 Red Hat, Inc.
2007-03-15 17:30:04 +00:00
*
* See COPYING.LIB for the License of this software
*
* Daniel Veillard <veillard@redhat.com>
*/
2007-06-26 22:21:22 +00:00
#ifndef __VIR_BUFFER_H__
#define __VIR_BUFFER_H__
2007-03-15 17:30:04 +00:00
#include "internal.h"
/**
2007-06-26 22:21:22 +00:00
* virBuffer:
2007-03-15 17:30:04 +00:00
*
* A buffer structure.
*/
2007-06-26 22:21:22 +00:00
typedef struct _virBuffer virBuffer;
typedef virBuffer *virBufferPtr;
#ifndef __VIR_BUFFER_C__
#define VIR_BUFFER_INITIALIZER { 0, 0, 0, NULL }
/* This struct must be kept in syn with the real struct
in the buf.c impl file */
2007-06-26 22:21:22 +00:00
struct _virBuffer {
unsigned int a;
unsigned int b;
unsigned int c;
char *d;
2007-03-15 17:30:04 +00:00
};
#endif
2007-03-15 17:30:04 +00:00
2008-11-17 11:03:25 +00:00
char *virBufferContentAndReset(const virBufferPtr buf);
int virBufferError(const virBufferPtr buf);
unsigned int virBufferUse(const virBufferPtr buf);
2008-11-17 11:03:25 +00:00
void virBufferAdd(const virBufferPtr buf, const char *str, int len);
void virBufferAddChar(const virBufferPtr buf, char c);
void virBufferVSprintf(const virBufferPtr buf, const char *format, ...)
2007-03-15 17:30:04 +00:00
ATTRIBUTE_FORMAT(printf, 2, 3);
void virBufferStrcat(const virBufferPtr buf, ...);
void virBufferEscapeString(const virBufferPtr buf, const char *format, const char *str);
void virBufferURIEncodeString (const virBufferPtr buf, const char *str);
2007-03-15 17:30:04 +00:00
#define virBufferAddLit(buf_, literal_string_) \
2008-11-17 11:03:25 +00:00
virBufferAdd (buf_, "" literal_string_ "", sizeof literal_string_ - 1)
2007-06-26 22:21:22 +00:00
#endif /* __VIR_BUFFER_H__ */