]> git.ozlabs.org Git - ccan/blobdiff - ccan/tal/tal.h
tal: rename tal_len to tal_bytelen.
[ccan] / ccan / tal / tal.h
index 30c8e7bb9207c4daba3cb046e651ff288de21bfe..71f7698601c1f933b62670ae83769d6c47de5cd9 100644 (file)
@@ -310,16 +310,16 @@ const char *tal_name(const tal_t *ptr);
  * Returns 0 if @ptr has no length property or is NULL, but be aware
  * that that is also a valid size!
  */
-#define tal_count(p) (tal_len(p) / sizeof(*p))
+#define tal_count(p) (tal_bytelen(p) / sizeof(*p))
 
 /**
- * tal_len - get the count of bytes in a tal_arr.
+ * tal_bytelen - get the count of bytes in a tal_arr.
  * @ptr: The tal allocated object array (or NULL)
  *
  * Returns 0 if @ptr has no length property or NULL, but be aware that that is
  * also a valid size!
  */
-size_t tal_len(const tal_t *ptr);
+size_t tal_bytelen(const tal_t *ptr);
 
 /**
  * tal_first - get the first immediate tal object child.