*** empty log message ***
This commit is contained in:
parent
c9b5100bb8
commit
fb10fd5f5b
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: map.c,v 1.6 2006-03-07 15:55:14 bacon Exp $
|
||||
* $Id: map.c,v 1.7 2006-03-07 16:09:18 bacon Exp $
|
||||
*/
|
||||
|
||||
#include <xp/awk/awk.h>
|
||||
@ -162,7 +162,7 @@ xp_awk_pair_t* xp_awk_map_set (xp_awk_map_t* map, xp_char_t* key, void* val)
|
||||
}
|
||||
|
||||
xp_awk_pair_t* xp_awk_map_getpair (
|
||||
xp_awk_map_t* map, xp_char_t* key, const void** val)
|
||||
xp_awk_map_t* map, xp_char_t* key, void** val)
|
||||
{
|
||||
xp_awk_pair_t* pair;
|
||||
|
||||
|
@ -1,11 +1,13 @@
|
||||
/*
|
||||
* $Id: run.c,v 1.9 2006-03-07 15:55:14 bacon Exp $
|
||||
* $Id: run.c,v 1.10 2006-03-07 16:09:18 bacon Exp $
|
||||
*/
|
||||
|
||||
#include <xp/awk/awk.h>
|
||||
|
||||
#ifndef __STAND_ALONE
|
||||
#include <xp/bas/assert.h>
|
||||
#include <xp/bas/string.h>
|
||||
#include <xp/bas/memory.h>
|
||||
#endif
|
||||
|
||||
static int __activate_block (xp_awk_t* awk, xp_awk_nde_blk_t* nde);
|
||||
|
@ -1,9 +1,14 @@
|
||||
/*
|
||||
* $Id: val.c,v 1.3 2006-03-07 15:55:14 bacon Exp $
|
||||
* $Id: val.c,v 1.4 2006-03-07 16:09:18 bacon Exp $
|
||||
*/
|
||||
|
||||
#include <xp/awk/awk.h>
|
||||
|
||||
#ifndef __STAND_ALONE
|
||||
#include <xp/bas/string.h>
|
||||
#include <xp/bas/memory.h>
|
||||
#endif
|
||||
|
||||
static xp_awk_val_nil_t __awk_nil = { XP_AWK_VAL_NIL };
|
||||
xp_awk_val_t* xp_awk_val_nil = (xp_awk_val_t*)&__awk_nil;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user