aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-06-16 22:21:48 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-06-16 22:21:48 +0300
commitb421abe2b1aa70f8077e5c41c199245790d9349b (patch)
tree658d3274be4b1c7761422713cfc8539dd7f43015 /awk.h
parent09dc31a240626db0b0de7047ee2c9f6978b14585 (diff)
parentb5c92588dc5972fab63ee2b2b8983a74e6fa5872 (diff)
downloadegawk-b421abe2b1aa70f8077e5c41c199245790d9349b.tar.gz
egawk-b421abe2b1aa70f8077e5c41c199245790d9349b.tar.bz2
egawk-b421abe2b1aa70f8077e5c41c199245790d9349b.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/awk.h b/awk.h
index 9084e0d3..bee0e125 100644
--- a/awk.h
+++ b/awk.h
@@ -1778,6 +1778,8 @@ dupnode(NODE *n)
}
#endif
+/* force_string --- force a node to have a string value */
+
static inline NODE *
force_string(NODE *s)
{
@@ -1796,6 +1798,8 @@ force_string(NODE *s)
#define force_number str2number
#else /* not GAWKDEBUG */
+/* unref --- decrease the reference count and/or free a node */
+
static inline void
unref(NODE *r)
{
@@ -1803,6 +1807,8 @@ unref(NODE *r)
r_unref(r);
}
+/* force_number --- force a node to have a numeric value */
+
static inline NODE *
force_number(NODE *n)
{
@@ -1814,6 +1820,8 @@ force_number(NODE *n)
#endif /* GAWKDEBUG */
+/* emalloc_real --- malloc with error checking */
+
static inline void *
emalloc_real(size_t count, const char *where, const char *var, const char *file, int line)
{
@@ -1830,6 +1838,8 @@ emalloc_real(size_t count, const char *where, const char *var, const char *file,
return ret;
}
+/* erealloc_real --- realloc with error checking */
+
static inline void *
erealloc_real(void *ptr, size_t count, const char *where, const char *var, const char *file, int line)
{