Home | History | Annotate | Download | only in macos

Lines Matching defs:commandLine

367 	char   *commandLine;
569 commandLine = (char*) malloc (appNameText[0] + prefs.command_line[0] + 2);
570 if ( commandLine == NULL ) {
581 SDL_memcpy(commandLine, appNameText + 1, appNameText[0]);
582 commandLine[appNameText[0]] = ' ';
583 commandLine + appNameText[0] + 1, prefs.command_line + 1, prefs.command_line[0]);
584 commandLine[ appNameText[0] + 1 + prefs.command_line[0] ] = '\0';
587 nargs = ParseCommandLine (commandLine, NULL);
592 ParseCommandLine (commandLine, args);
597 free (commandLine);