The R Project SVN R

Rev

Rev 42579 | Rev 44201 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42579 Rev 43800
Line 76... Line 76...
76
    for (i = 0; s[i] == ' '; i++);
76
    for (i = 0; s[i] == ' '; i++);
77
    return &s[i];
77
    return &s[i];
78
}
78
}
79
 
79
 
80
 
80
 
81
int optread(char *opt[], char sep)
81
int optread(char *opt[], const char sep)
82
{
82
{
83
    static char sm[120];
83
    static char sm[120];
84
    char *p, *s;
84
    char *p, *s;
85
    int   l;
85
    int   l;
86
 
86