testcase.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 27 Dec 2013 16:00:09 +0100
changeset 167 7c6b221900bf
parent 77 49e0babccb23
child 169 df7c720bcaa6
permissions -rw-r--r--
Proper Datatypes to leave the 80's

/**
 * 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;
}