miller/c/containers/bind_stack.c
2016-05-16 06:33:50 -04:00

21 lines
423 B
C

#include <stdlib.h>
#include "lib/mlrutil.h"
#include "lib/mlr_globals.h"
#include "containers/bind_stack.h"
bind_stack_t* bind_stack_alloc() {
return NULL; // xxx stub
}
void bind_stack_free(bind_stack_t* pstack) {
}
void bind_stack_push(bind_stack_t* pstack, mlhmmv_t* pframe) {
}
void bind_stack_pop(bind_stack_t* pstack) {
}
mv_t* bind_stack_resolve(bind_stack_t* pstack, char* key) {
return NULL; // xxx stub
}