summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-15 11:45:53 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-15 11:46:05 +0100
commit4c488a1d0ee668486d03fb5ad64924411c81b9a1 (patch)
treee8c5538978abac133cc81f57b53ee80d8021d83f /src/include
parent3fa213e41e82a93f8f5c5cd59b599ff78d0acc3a (diff)
downloadexchange-4c488a1d0ee668486d03fb5ad64924411c81b9a1.tar.gz
exchange-4c488a1d0ee668486d03fb5ad64924411c81b9a1.tar.bz2
exchange-4c488a1d0ee668486d03fb5ad64924411c81b9a1.zip
buffer lib has moved to GNUnet
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_util.h146
1 files changed, 0 insertions, 146 deletions
diff --git a/src/include/taler_util.h b/src/include/taler_util.h
index 48c10048e..da5017949 100644
--- a/src/include/taler_util.h
+++ b/src/include/taler_util.h
@@ -75,152 +75,6 @@
/**
- * Dynamically growing buffer. Can be used to construct
- * strings and other objects with dynamic size.
- *
- * This structure should, in most cases, be stack-allocated and
- * zero-initialized, like:
- *
- * struct TALER_Buffer my_buffer = { 0 };
- */
-struct TALER_Buffer
-{
- /**
- * Capacity of the buffer.
- */
- size_t capacity;
-
- /**
- * Current write position.
- */
- size_t position;
-
- /**
- * Backing memory.
- */
- char *mem;
-
- /**
- * Log a warning if the buffer is grown over its initially allocated capacity.
- */
- int warn_grow;
-};
-
-
-/**
- * Initialize a buffer with the given capacity.
- *
- * When a buffer is allocated with this function, a warning is logged
- * when the buffer exceeds the initial capacity.
- *
- * @param buf the buffer to initialize
- * @param capacity the capacity (in bytes) to allocate for @a buf
- */
-void
-TALER_buffer_prealloc (struct TALER_Buffer *buf, size_t capacity);
-
-
-/**
- * Make sure that at least @a n bytes remaining in the buffer.
- *
- * @param buf buffer to potentially grow
- * @param n number of bytes that should be available to write
- */
-void
-TALER_buffer_ensure_remaining (struct TALER_Buffer *buf, size_t n);
-
-
-/**
- * Write bytes to the buffer.
- *
- * Grows the buffer if necessary.
- *
- * @param buf buffer to write to
- * @param data data to read from
- * @param len number of bytes to copy from @a data to @a buf
- *
- */
-void
-TALER_buffer_write (struct TALER_Buffer *buf, const char *data, size_t len);
-
-
-/**
- * Write a 0-terminated string to a buffer, excluding the 0-terminator.
- *
- * Grows the buffer if necessary.
- *
- * @param buf the buffer to write to
- * @param str the string to write to @a buf
- */
-void
-TALER_buffer_write_str (struct TALER_Buffer *buf, const char *str);
-
-
-/**
- * Write a path component to a buffer, ensuring that
- * there is exactly one slash between the previous contents
- * of the buffer and the new string.
- *
- * @param buf buffer to write to
- * @param str string containing the new path component
- */
-void
-TALER_buffer_write_path (struct TALER_Buffer *buf, const char *str);
-
-
-/**
- * Write a 0-terminated formatted string to a buffer, excluding the
- * 0-terminator.
- *
- * Grows the buffer if necessary.
- *
- * @param buf the buffer to write to
- * @param fmt format string
- * @param ... format arguments
- */
-void
-TALER_buffer_write_fstr (struct TALER_Buffer *buf, const char *fmt, ...);
-
-
-/**
- * Write a 0-terminated formatted string to a buffer, excluding the
- * 0-terminator.
- *
- * Grows the buffer if necessary.
- *
- * @param buf the buffer to write to
- * @param fmt format string
- * @param args format argument list
- */
-void
-TALER_buffer_write_vfstr (struct TALER_Buffer *buf, const char *fmt, va_list
- args);
-
-
-/**
- * Clear the buffer and return the string it contained.
- * The caller is responsible to eventually #GNUNET_free
- * the returned string.
- *
- * The returned string is always 0-terminated.
- *
- * @param buf the buffer to reap the string from
- * @returns the buffer contained in the string
- */
-char *
-TALER_buffer_reap_str (struct TALER_Buffer *buf);
-
-
-/**
- * Free the backing memory of the given buffer.
- * Does not free the memory of the buffer control structure,
- * which is typically stack-allocated.
- */
-void
-TALER_buffer_clear (struct TALER_Buffer *buf);
-
-
-/**
* Initialize Gcrypt library.
*/
void