cmdline (merge-intel): fix whitespaces
[libcmdline.git] / src / lib / cmdline_cirbuf.h
index c68e248..1f976dd 100644 (file)
@@ -77,7 +77,7 @@ void cirbuf_init(struct cirbuf *cbuf, char *buf, unsigned int start, unsigned in
 #define CIRBUF_GET_MAXLEN(cirbuf) ((cirbuf)->maxlen)
 
 /**
- * return the number of free elts 
+ * return the number of free elts
  */
 #define CIRBUF_GET_FREELEN(cirbuf) ((cirbuf)->maxlen - (cirbuf)->len)
 
@@ -93,49 +93,49 @@ void cirbuf_init(struct cirbuf *cbuf, char *buf, unsigned int start, unsigned in
               i ++,  e=(c)->buf[((c)->start+i)%((c)->maxlen)])
 
 
-/** 
+/**
  * Add a character at head of the circular buffer. Return 0 on success, or
  * a negative value on error.
  */
 int cirbuf_add_head_safe(struct cirbuf *cbuf, char c);
 
-/** 
+/**
  * Add a character at head of the circular buffer. You _must_ check that you
  * have enough free space in the buffer before calling this func.
  */
 void cirbuf_add_head(struct cirbuf *cbuf, char c);
 
-/** 
+/**
  * Add a character at tail of the circular buffer. Return 0 on success, or
  * a negative value on error.
  */
 int cirbuf_add_tail_safe(struct cirbuf *cbuf, char c);
 
-/** 
+/**
  * Add a character at tail of the circular buffer. You _must_ check that you
  * have enough free space in the buffer before calling this func.
  */
 void cirbuf_add_tail(struct cirbuf *cbuf, char c);
 
-/** 
+/**
  * Remove a char at the head of the circular buffer. Return 0 on
  * success, or a negative value on error.
  */
 int cirbuf_del_head_safe(struct cirbuf *cbuf);
 
-/** 
+/**
  * Remove a char at the head of the circular buffer. You _must_ check
  * that buffer is not empty before calling the function.
  */
 void cirbuf_del_head(struct cirbuf *cbuf);
 
-/** 
+/**
  * Remove a char at the tail of the circular buffer. Return 0 on
  * success, or a negative value on error.
  */
 int cirbuf_del_tail_safe(struct cirbuf *cbuf);
 
-/** 
+/**
  * Remove a char at the tail of the circular buffer. You _must_ check
  * that buffer is not empty before calling the function.
  */
@@ -153,40 +153,40 @@ char cirbuf_get_head(struct cirbuf *cbuf);
  */
 char cirbuf_get_tail(struct cirbuf *cbuf);
 
-/** 
+/**
  * Add a buffer at head of the circular buffer. 'c' is a pointer to a
  * buffer, and n is the number of char to add. Return the number of
  * copied bytes on success, or a negative value on error.
  */
 int cirbuf_add_buf_head(struct cirbuf *cbuf, const char *c, unsigned int n);
 
-/** 
+/**
  * Add a buffer at tail of the circular buffer. 'c' is a pointer to a
  * buffer, and n is the number of char to add. Return the number of
  * copied bytes on success, or a negative value on error.
  */
 int cirbuf_add_buf_tail(struct cirbuf *cbuf, const char *c, unsigned int n);
 
-/** 
+/**
  * Remove chars at the head of the circular buffer. Return 0 on
  * success, or a negative value on error.
  */
 int cirbuf_del_buf_head(struct cirbuf *cbuf, unsigned int size);
 
-/** 
+/**
  * Remove chars at the tail of the circular buffer. Return 0 on
  * success, or a negative value on error.
  */
 int cirbuf_del_buf_tail(struct cirbuf *cbuf, unsigned int size);
 
-/** 
+/**
  * Copy a maximum of 'size' characters from the head of the circular
  * buffer to a flat one pointed by 'c'. Return the number of copied
  * chars.
  */
 int cirbuf_get_buf_head(struct cirbuf *cbuf, char *c, unsigned int size);
 
-/** 
+/**
  * Copy a maximum of 'size' characters from the tail of the circular
  * buffer to a flat one pointed by 'c'. Return the number of copied
  * chars.
@@ -194,12 +194,12 @@ int cirbuf_get_buf_head(struct cirbuf *cbuf, char *c, unsigned int size);
 int cirbuf_get_buf_tail(struct cirbuf *cbuf, char *c, unsigned int size);
 
 
-/** 
+/**
  * Set the start of the data to the index 0 of the internal buffer.
  */
 void cirbuf_align_left(struct cirbuf *cbuf);
 
-/** 
+/**
  * Set the end of the data to the last index of the internal buffer.
  */
 void cirbuf_align_right(struct cirbuf *cbuf);