You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
304 B

/*
* word.h
*
* Created on: Jun 13, 2013
* Author: delmadord
*/
#ifndef WORD_H_
#define WORD_H_
// Reads the next word from the input
// Makes word empty, if exceeds OEF
// Truncates long words
// Returns number of characters stored
int read_word(char *word, int len);
#endif /* WORD_H_ */