reduce(dir)
char *dir;
{
- int i = strlen(dir);
+ size_t i = strlen(dir);
while (i > 0 && dir[i] != SEP)
--i;
dir[i] = '\0';
char *buffer;
char *stuff;
{
- int n, k;
+ size_t n, k;
if (stuff[0] == SEP)
n = 0;
else {
char *argv0_path;
char *home;
{
- int n;
+ size_t n;
char *vpath;
/* If PYTHONHOME is set, we believe it unconditionally */
char *argv0_path;
char *home;
{
- int n;
+ size_t n;
/* If PYTHONHOME is set, we believe it unconditionally */
if (home) {
char argv0_path[MAXPATHLEN+1];
int pfound, efound; /* 1 if found; -1 if found build directory */
char *buf;
- int bufsz;
- int prefixsz;
+ size_t bufsz;
+ size_t prefixsz;
char *defpath = pythonpath;
#ifdef WITH_NEXT_FRAMEWORK
NSModule pythonModule;
char *delim = strchr(path, DELIM);
if (delim) {
- int len = delim - path;
+ size_t len = delim - path;
strncpy(progpath, path, len);
*(progpath + len) = '\0';
}
}
if (delim) {
- int len = delim - defpath + 1;
- int end = strlen(buf) + len;
+ size_t len = delim - defpath + 1;
+ size_t end = strlen(buf) + len;
strncat(buf, defpath, len);
*(buf + end) = '\0';
}