*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@116 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-01-19 06:40:19 +00:00
commit e8ab41b8b9
3 changed files with 399 additions and 0 deletions

View file

@ -136,6 +136,17 @@ SwigScanner_get_line(SwigScanner *s) {
return Getline(s->str);
}
/* -----------------------------------------------------------------------------
* void SwigScanner_idstart(SwigScanner *s, char *id)
*
* Set the characters that can be used to start an identifier
* ----------------------------------------------------------------------------- */
void
SwigScanner_idstart(SwigScanner *s, char *id) {
s->idstart = copy_string(id);
}
/* -----------------------------------------------------------------------------
* char nextchar(SwigScanner *s)
*