Browse Source

typedef unsigned long int rpn_value_t

Yann Weber 4 years ago
parent
commit
59f83eee05
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      rpn_lib.h

+ 6
- 0
rpn_lib.h View File

52
 /**@brief macro to declare a code part and associated size */
52
 /**@brief macro to declare a code part and associated size */
53
 #define CODE_PART(NAME) const extern void* NAME; extern const unsigned long NAME ## _sz
53
 #define CODE_PART(NAME) const extern void* NAME; extern const unsigned long NAME ## _sz
54
 
54
 
55
+/**@brief Define the type of value manipulated by RPN expressions
56
+ *
57
+ * Use it for stack and arguments items
58
+ * @todo use it */
59
+typedef unsigned long int rpn_value_t;
60
+
55
 /**@brief Function heading code
61
 /**@brief Function heading code
56
  *
62
  *
57
  * - stack frame creation
63
  * - stack frame creation

Loading…
Cancel
Save