aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/docommand.c
blob: 70de99055291591220557f84af9d70dcafb56144 (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 (do_command (command->chars));
} /* DoCommandNullTerminated */