no wide character constants; sigh
This commit is contained in:
parent
bc7da02954
commit
bb0266fe61
9 changed files with 43 additions and 43 deletions
|
|
@ -847,11 +847,11 @@ sce(void)
|
|||
{
|
||||
int n = 1;
|
||||
|
||||
while (C != L'\n' && !(L'0' <= c && c <= L'9'))
|
||||
while (C != '\n' && !('0' <= c && c <= '9'))
|
||||
;
|
||||
if (c != L'\n') {
|
||||
for (n = c-L'0';'0' <= C && c <= L'9';)
|
||||
n = n*10 + c-L'0';
|
||||
if (c != '\n') {
|
||||
for (n = c-'0';'0' <= C && c <= '9';)
|
||||
n = n*10 + c-'0';
|
||||
}
|
||||
while(n) {
|
||||
if(C == '.') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue