~ubuntu-branches/ubuntu/vivid/cctools/vivid

« back to all changes in this revision

Viewing changes to ftsh/src/ast_execute.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2011-05-07 09:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110507090500-lqpmdtwndor6e7os
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin
 
3
Copyright (C) 2005- The University of Notre Dame
 
4
This software is distributed under the GNU General Public License.
 
5
See the file COPYING for details.
 
6
*/
 
7
 
 
8
#ifndef AST_EXECUTE_H
 
9
#define AST_EXECUTE_H
 
10
 
 
11
#include "ast.h"
 
12
#include <time.h>
 
13
 
 
14
char * ast_function_execute( int line, int argc, char **argv, time_t stoptime );
 
15
 
 
16
int ast_program_execute( struct ast_group *g, time_t stoptime );
 
17
int ast_group_execute( struct ast_group *g, time_t stoptime );
 
18
int ast_command_execute( struct ast_command *s, time_t stoptime );
 
19
int ast_conditional_execute( struct ast_conditional *c, time_t stoptime );
 
20
int ast_try_execute( struct ast_try *t, time_t stoptime );
 
21
int ast_whileloop_execute( struct ast_whileloop *f, time_t stoptime );
 
22
int ast_forloop_execute( struct ast_forloop *f, time_t stoptime );
 
23
int ast_shift_execute( struct ast_shift *s, time_t stoptime );
 
24
int ast_return_execute( struct ast_return *s, time_t stoptime );
 
25
int ast_assign_execute( struct ast_assign *s, time_t stoptime );
 
26
int ast_simple_execute( struct ast_simple *s, time_t stoptime );
 
27
char * ast_word_execute( int line, struct ast_word *w );
 
28
char * ast_word_list_execute( int line, struct ast_word *w );
 
29
int ast_number_execute( int line, struct ast_word *w, int *value );
 
30
 
 
31
#endif