* Underimplemented stack functionality */
| 240 | * Underimplemented stack functionality |
| 241 | */ |
| 242 | static inline void |
| 243 | csv_stack_push (csv_private_t *csv UNUSED, const char *name UNUSED) |
| 244 | { |
| 245 | #ifdef CSV_STACK_IS_NEEDED |
| 246 | csv->c_stack_depth += 1; |
| 247 | #endif /* CSV_STACK_IS_NEEDED */ |
| 248 | } |
| 249 | |
| 250 | /* |
| 251 | * Underimplemented stack functionality |