*** empty log message ***
This commit is contained in:
parent
7b5eddbc8d
commit
b104bc387c
@ -15,7 +15,7 @@ Package=<4>
|
|||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
Project: "awk.activex"=".\com\awk\awk.dsp" - Package Owner=<4>
|
Project: "awk.com"=.\com\awk\awk.dsp - Package Owner=<4>
|
||||||
|
|
||||||
Package=<5>
|
Package=<5>
|
||||||
{{{
|
{{{
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: awk.h,v 1.160 2006-12-04 12:58:23 bacon Exp $
|
* $Id: awk.h,v 1.161 2006-12-08 06:02:41 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _ASE_AWK_AWK_H_
|
#ifndef _ASE_AWK_AWK_H_
|
||||||
@ -83,9 +83,9 @@ struct ase_awk_syscas_t
|
|||||||
void* (*memset) (void* dst, int val, ase_size_t n);
|
void* (*memset) (void* dst, int val, ase_size_t n);
|
||||||
ase_real_t (*pow) (ase_real_t x, ase_real_t y);
|
ase_real_t (*pow) (ase_real_t x, ase_real_t y);
|
||||||
|
|
||||||
int (*sprintf) (ase_char_t* buf, ase_size_t size, ase_char_t* fmt, ...);
|
int (*sprintf) (ase_char_t* buf, ase_size_t size, const ase_char_t* fmt, ...);
|
||||||
void (*aprintf) (ase_char_t* fmt, ...); /* assertion */
|
void (*aprintf) (const ase_char_t* fmt, ...); /* assertion */
|
||||||
void (*dprintf) (ase_char_t* fmt, ...); /* debug */
|
void (*dprintf) (const ase_char_t* fmt, ...); /* debug */
|
||||||
void (*abort) (void);
|
void (*abort) (void);
|
||||||
|
|
||||||
void* custom_data;
|
void* custom_data;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: parse.c,v 1.216 2006-12-04 12:58:23 bacon Exp $
|
* $Id: parse.c,v 1.217 2006-12-08 06:02:41 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ase/awk/awk_i.h>
|
#include <ase/awk/awk_i.h>
|
||||||
@ -346,7 +346,9 @@ int ase_awk_parse (ase_awk_t* awk, ase_awk_srcios_t* srcios)
|
|||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
ASE_AWK_ASSERT (awk, srcios != ASE_NULL && srcios->in != ASE_NULL);
|
ASE_AWK_ASSERTX (awk,
|
||||||
|
srcios != ASE_NULL && srcios->in != ASE_NULL,
|
||||||
|
"the source code input stream must be provided at least");
|
||||||
ASE_AWK_ASSERT (awk, awk->parse.depth.cur.loop == 0);
|
ASE_AWK_ASSERT (awk, awk->parse.depth.cur.loop == 0);
|
||||||
ASE_AWK_ASSERT (awk, awk->parse.depth.cur.expr == 0);
|
ASE_AWK_ASSERT (awk, awk->parse.depth.cur.expr == 0);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user