~ubuntu-branches/ubuntu/maverick/espeak/maverick

« back to all changes in this revision

Viewing changes to src/translate.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-09-20 13:43:21 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080920134321-id3w2ptlfogz74fd
Tags: 1.39-0ubuntu1
New upstream release, FFe granted. (LP: #268390)

Show diffs side-by-side

added added

removed removed

Lines of Context:
399
399
 
400
400
int IsSpace(unsigned int c)
401
401
{//========================
 
402
        if(c == 0)
 
403
                return(0);
402
404
        if(wcschr(chars_space,c))
403
405
                return(1);
404
406
        return(iswspace(c));