/******************************************************************************
*   CreateProcess
*
*   Copyright (C) <2010>  <Andrew Smith>
*
*   This program is free software: you can redistribute it and/or modify
*   it under the terms of the GNU General Public License as published by
*   the Free Software Foundation, version 2 of the License only, not
*   any earlier or later version.
*
*   You should have received a copy of the GNU General Public License
*   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef CREATEPROCESS_H
#define CREATEPROCESS_H

#include <stdlib.h>

pid_t CreateProcess(const char* command, const char* parametersIn);

#endif
