py/qstr: Add QSTR_TOTAL() macro to get number of qstrs.
diff --git a/py/qstr.h b/py/qstr.h
index 63fd0c3..f4375ee 100644
--- a/py/qstr.h
+++ b/py/qstr.h
@@ -56,6 +56,7 @@
 } qstr_pool_t;
 
 #define QSTR_FROM_STR_STATIC(s) (qstr_from_strn((s), strlen(s)))
+#define QSTR_TOTAL() (MP_STATE_VM(last_pool)->total_prev_len + MP_STATE_VM(last_pool)->len)
 
 void qstr_init(void);