Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(361)

Delta Between Two Patch Sets: src/lib9/tokenize.c

Issue 60840049: code review 60840049: lib9: enable on Plan 9 (Closed)
Left Patch Set: diff -r ec5195954667 https://code.google.com/p/go Created 11 years, 1 month ago
Right Patch Set: diff -r dc2e4bffd677 https://code.google.com/p/go Created 11 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/lib9/time.c ('k') | src/libbio/bprint.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b