Mercurial > hg > Members > masakoha > testcode
view c/getWord/word.c @ 142:de0f332d560c pairPro
insert charClassMerge function
author | masa |
---|---|
date | Fri, 11 Dec 2015 14:54:00 +0900 |
parents | ffef79514d3c |
children |
line wrap: on
line source
#include <ctype.h> #include <string.h> #include <stdio.h> #include <stdlib.h> unsigned char* getWord(unsigned char *string) { int wordSize = 0; while (isalnum(string[wordSize])) { wordSize++; } int allocateWordSize = wordSize + 1; unsigned char *word = (unsigned char*)malloc(sizeof(unsigned char)*allocateWordSize); strncpy((char*)word, (char*)string, allocateWordSize); word[wordSize] = '\0'; return word; }