コード例 #1
0
ファイル: syntree.c プロジェクト: doniexun/compiler-40
int fun_def_list_sz(fun_def_list_t l)
{
  return list_sz((list_t)l);
}
コード例 #2
0
ファイル: syntree.c プロジェクト: doniexun/compiler-40
int stmt_list_sz(stmt_list_t l)
{
  return list_sz((list_t)l);
}
コード例 #3
0
ファイル: syntree.c プロジェクト: doniexun/compiler-40
/* 式のリストの長さを返す */
int expr_list_sz(expr_list_t l)
{
  return list_sz((list_t)l);
}
コード例 #4
0
ファイル: syntree.c プロジェクト: doniexun/compiler-40
int var_decl_list_sz(var_decl_list_t l)
{
  return list_sz((list_t)l);
}
コード例 #5
0
ファイル: env.c プロジェクト: hayamiz/c0_compiler
/*envsの個数を返す*/
int env_list_sz(env_list_t envs){
  return list_sz((list_t)envs);
}