My Project
Functions
testUtil.c File Reference

Driver to test functions of util.c (do not modify) More...

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "util.h"

Functions

int main (int argc, char *argv[])
 

Detailed Description

This is a driver program to test the functions of util.c The program accepts two command line parameters and executes one of the functions of util.c. To understand the usage, type the testUtil. with no parameters. This will give a brief description of each command and its parameter.

Author
: Fritz Sieker

Function Documentation

int main ( int  argc,
char *  argv[] 
)

Entry point of the program

Parameters
argccount of arguments, will always be at least 1
argvarray of parameters to program argv[0] is the name of the program, so additional parameters will begin at index 1.
Returns
0 the Linux convention for success.