LEFT | RIGHT |
(no file at all) | |
| 1 // +build !plan9 |
| 2 |
1 /* | 3 /* |
2 Inferno lib9/tokenize.c | 4 Inferno lib9/tokenize.c |
3 http://code.google.com/p/inferno-os/source/browse/lib9/tokenize.c | 5 http://code.google.com/p/inferno-os/source/browse/lib9/tokenize.c |
4 | 6 |
5 Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. | 7 Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. |
6 Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuo
va.com). All rights reserved. | 8 Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuo
va.com). All rights reserved. |
7 | 9 |
8 Permission is hereby granted, free of charge, to any person obtaining a copy | 10 Permission is hereby granted, free of charge, to any person obtaining a copy |
9 of this software and associated documentation files (the "Software"), to deal | 11 of this software and associated documentation files (the "Software"), to deal |
10 in the Software without restriction, including without limitation the rights | 12 in the Software without restriction, including without limitation the rights |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 while(*s!='\0' && utfrune(qsep, (Rune)*s)!=nil) | 126 while(*s!='\0' && utfrune(qsep, (Rune)*s)!=nil) |
125 s++; | 127 s++; |
126 if(*s == '\0') | 128 if(*s == '\0') |
127 break; | 129 break; |
128 args[nargs] = s; | 130 args[nargs] = s; |
129 s = qtoken(s, qsep); | 131 s = qtoken(s, qsep); |
130 } | 132 } |
131 | 133 |
132 return nargs; | 134 return nargs; |
133 } | 135 } |
LEFT | RIGHT |