]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - gmqcc.h
Remove trailing whitespace for Blub.
[xonotic/gmqcc.git] / gmqcc.h
diff --git a/gmqcc.h b/gmqcc.h
index 8cf2a839bda7c9f353e98683dbb0d93bb2d36d4c..7533bb43ee2d09d8bb50dd68178c29c0c5052adc 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -270,32 +270,32 @@ typedef struct hash_table_t {
 
 /*
  * hashtable implementation:
- * 
+ *
  * Note:
  *      This was designed for pointers:  you manage the life of the object yourself
  *      if you do use this for non-pointers please be warned that the object may not
  *      be valid if the duration of it exceeds (i.e on stack).  So you need to allocate
  *      yourself, or put those in global scope to ensure duration is for the whole
  *      runtime.
- * 
+ *
  * util_htnew(size)                             -- to make a new hashtable
  * util_htset(table, key, value, sizeof(value)) -- to set something in the table
  * util_htget(table, key)                       -- to get something from the table
  * util_htdel(table)                            -- to delete the table
- * 
+ *
  * example of use:
- * 
+ *
  * ht    foo  = util_htnew(1024);
  * int   data = 100;
  * char *test = "hello world\n";
  * util_htset(foo, "foo", (void*)&data);
  * util_gtset(foo, "bar", (void*)test);
- * 
+ *
  * printf("foo: %d, bar %s",
  *     *((int *)util_htget(foo, "foo")),
  *      ((char*)util_htget(foo, "bar"))
  * );
- * 
+ *
  * util_htdel(foo);
  */
 hash_table_t *util_htnew (size_t size);