testcase.c
author Markus Brökers <mbroeker@largo.homelinux.org>
Tue, 17 Aug 2010 18:57:57 +0200
changeset 139 cb1d3f4cf18e
parent 77 49e0babccb23
child 169 df7c720bcaa6
permissions -rw-r--r--
execve returns a value on error and this catches it

/**
 * testcase.c
 * Copyright (C) 2008 Markus Broeker
 */

#define _XOPEN_SOURCE 500

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

int main (int argc, char **argv)
{
    char line[83];
    char *token;

    if (argc != 4) {
        printf ("Usage: %s <string> <delim> <delim>\n", argv[0]);
        return EXIT_FAILURE;
    }

    snprintf (line, 80, "%s\r\n", argv[1]);

    token = strtok (line, argv[2]);

    while (token) {
        printf ("TOKEN: %s\n", token);
        token = strtok (NULL, argv[3]);
    }

    printf ("\nTest finished\n");

    return EXIT_SUCCESS;
}