mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,
char**) and return an int even on PC platforms. If not, please fix PC/utils/makesrc.c ;-P
This commit is contained in:
parent
23c9e0024a
commit
7889010731
14 changed files with 109 additions and 145 deletions
|
@ -64,8 +64,7 @@ static char *module_search_path = NULL;
|
|||
|
||||
|
||||
static int
|
||||
is_sep(ch) /* determine if "ch" is a separator character */
|
||||
char ch;
|
||||
is_sep(char ch) /* determine if "ch" is a separator character */
|
||||
{
|
||||
#ifdef ALTSEP
|
||||
return ch == SEP || ch == ALTSEP;
|
||||
|
@ -76,8 +75,7 @@ is_sep(ch) /* determine if "ch" is a separator character */
|
|||
|
||||
|
||||
static void
|
||||
reduce(dir)
|
||||
char *dir;
|
||||
reduce(char *dir)
|
||||
{
|
||||
int i = strlen(dir);
|
||||
while (i > 0 && !is_sep(dir[i]))
|
||||
|
@ -87,8 +85,7 @@ reduce(dir)
|
|||
|
||||
|
||||
static int
|
||||
exists(filename)
|
||||
char *filename;
|
||||
exists(char *filename)
|
||||
{
|
||||
struct stat buf;
|
||||
return stat(filename, &buf) == 0;
|
||||
|
@ -96,9 +93,7 @@ exists(filename)
|
|||
|
||||
|
||||
static void
|
||||
join(buffer, stuff)
|
||||
char *buffer;
|
||||
char *stuff;
|
||||
join(char *buffer, char *stuff)
|
||||
{
|
||||
int n, k;
|
||||
if (is_sep(stuff[0]))
|
||||
|
@ -117,9 +112,7 @@ join(buffer, stuff)
|
|||
|
||||
|
||||
static int
|
||||
search_for_prefix(argv0_path, landmark)
|
||||
char *argv0_path;
|
||||
char *landmark;
|
||||
search_for_prefix(char *argv0_path, char *landmark)
|
||||
{
|
||||
int n;
|
||||
|
||||
|
@ -247,7 +240,7 @@ getpythonregpath(HKEY keyBase, BOOL bWin32s)
|
|||
#endif /* MS_WIN32 */
|
||||
|
||||
static void
|
||||
get_progpath()
|
||||
get_progpath(void)
|
||||
{
|
||||
extern char *Py_GetProgramName();
|
||||
char *path = getenv("PATH");
|
||||
|
@ -299,7 +292,7 @@ get_progpath()
|
|||
}
|
||||
|
||||
static void
|
||||
calculate_path()
|
||||
calculate_path(void)
|
||||
{
|
||||
char argv0_path[MAXPATHLEN+1];
|
||||
char *buf;
|
||||
|
@ -451,7 +444,7 @@ calculate_path()
|
|||
/* External interface */
|
||||
|
||||
char *
|
||||
Py_GetPath()
|
||||
Py_GetPath(void)
|
||||
{
|
||||
if (!module_search_path)
|
||||
calculate_path();
|
||||
|
@ -460,7 +453,7 @@ Py_GetPath()
|
|||
}
|
||||
|
||||
char *
|
||||
Py_GetPrefix()
|
||||
Py_GetPrefix(void)
|
||||
{
|
||||
if (!module_search_path)
|
||||
calculate_path();
|
||||
|
@ -469,7 +462,7 @@ Py_GetPrefix()
|
|||
}
|
||||
|
||||
char *
|
||||
Py_GetExecPrefix()
|
||||
Py_GetExecPrefix(void)
|
||||
{
|
||||
if (!module_search_path)
|
||||
calculate_path();
|
||||
|
@ -478,7 +471,7 @@ Py_GetExecPrefix()
|
|||
}
|
||||
|
||||
char *
|
||||
Py_GetProgramFullPath()
|
||||
Py_GetProgramFullPath(void)
|
||||
{
|
||||
if (!module_search_path)
|
||||
calculate_path();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue