Make some more arrays of pointers const.

This commit is contained in:
Dan Fandrich 2004-12-20 18:23:43 +00:00
parent 0e59182945
commit 80d301257c
3 changed files with 12 additions and 9 deletions

View File

@ -39,7 +39,7 @@
/* /*
* The telnet options represented as strings * The telnet options represented as strings
*/ */
static const char *telnetoptions[]= static const char * const telnetoptions[]=
{ {
"BINARY", "ECHO", "RCP", "SUPPRESS GO AHEAD", "BINARY", "ECHO", "RCP", "SUPPRESS GO AHEAD",
"NAME", "STATUS", "TIMING MARK", "RCTE", "NAME", "STATUS", "TIMING MARK", "RCTE",
@ -78,7 +78,7 @@ static const char *telnetoptions[]=
/* /*
* Then those numbers represented as strings: * Then those numbers represented as strings:
*/ */
static const char *telnetcmds[]= static const char * const telnetcmds[]=
{ {
"EOF", "SUSP", "ABORT", "EOR", "SE", "EOF", "SUSP", "ABORT", "EOR", "SE",
"NOP", "DMARK", "BRK", "IP", "AO", "NOP", "DMARK", "BRK", "IP", "AO",

View File

@ -86,11 +86,14 @@
static time_t Curl_parsedate(const char *date); static time_t Curl_parsedate(const char *date);
static const char *wkday[] = {"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"}; static const char * const wkday[] =
static const char *weekday[] = { "Monday", "Tuesday", "Wednesday", "Thursday", {"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"};
static const char * const weekday[] =
{ "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday", "Sunday" }; "Friday", "Saturday", "Sunday" };
static const char *month[]= { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", static const char * const month[]=
"Aug", "Sep", "Oct", "Nov", "Dec" }; { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
struct tzinfo { struct tzinfo {
const char *name; const char *name;
@ -153,7 +156,7 @@ static const struct tzinfo tz[]= {
static int checkday(char *check, size_t len) static int checkday(char *check, size_t len)
{ {
int i; int i;
const char **what; const char * const *what;
bool found= FALSE; bool found= FALSE;
if(len > 3) if(len > 3)
what = &weekday[0]; what = &weekday[0];
@ -172,7 +175,7 @@ static int checkday(char *check, size_t len)
static int checkmonth(char *check) static int checkmonth(char *check)
{ {
int i; int i;
const char **what; const char * const *what;
bool found= FALSE; bool found= FALSE;
what = &month[0]; what = &month[0];

View File

@ -146,7 +146,7 @@ char *curl_version(void)
/* data for curl_version_info */ /* data for curl_version_info */
static const char *protocols[] = { static const char * const protocols[] = {
#ifndef CURL_DISABLE_FTP #ifndef CURL_DISABLE_FTP
"ftp", "ftp",
#endif #endif