include/sentence.h
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 13 Dec 2008 15:56:39 +0100
changeset 0 06dd3b8d90ad
permissions -rw-r--r--
Virtual Reader committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 *  $Id: sentence.h 48 2008-01-09 23:59:19Z mbroeker $
 * $URL: http://localhost/svn/c/VirtualReader/trunk/include/sentence.h $
 */

#ifndef __SENTENCE_H__
#define __SENTENCE_H__

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

/* prepares the text */
int *parse (char *);

/* reads a textfile */
char *readbuffer (char *);

/* extracts a substring from a buffer */
char *getSentence (char *, int, int);

/* counts the words of a string */
int words (char *);

char **getstrings (char *, int *);

#endif