aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/docommand.c
blob: 7e9a5db554bec69e15f240293f174c82353e9e8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
typedef struct clean_string {int length; char chars [1]; } *CleanString;

# define Clean(ignore)
# include "docommand.h"
/*
	Clean string
	============
*/

extern int do_command (char *command);

int
DoCommandNullTerminated (CleanString command)
{
	return (docommand (command->chars));
} /* DoCommandNullTerminated */