From 15318cad33835e4e2dc620d033e43cd930676cdd Mon Sep 17 00:00:00 2001 From: kergoth Date: Fri, 25 Jan 2002 22:14:26 +0000 Subject: Initial revision --- (limited to 'library/quickexec.cpp') diff --git a/library/quickexec.cpp b/library/quickexec.cpp new file mode 100644 index 0000000..f3b5089 --- a/dev/null +++ b/library/quickexec.cpp @@ -0,0 +1,41 @@ +#include +#include +#include +#include +#include + +#define QUICKEXEC "/tmp/.quickexec" + +int quickexecv( const char *path, const char *argv[] ) +{ + int fd = open( QUICKEXEC, O_WRONLY ); + if ( fd == -1 ) { + perror( "quickexec pipe" ); + return -1; + } + write( fd, path, strlen( path )+1 ); + const char **s = argv; + while( *s ) { + write( fd, *s, strlen( *s )+1 ); + ++s; + } + close(fd); + return 0; +} + +int quickexec( const char *path, const char *, ...) +{ + int fd = open( QUICKEXEC, O_WRONLY ); + if ( fd == -1 ) { + perror( "quickexec pipe" ); + return -1; + } + const char** s = &path; + do { + write( fd, *s, strlen( *s )+1 ); + } while ( *(++s) ); + + close( fd ); + + return 0; +} -- cgit v0.9.0.2