OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:comment_arg
(Results
1 - 1
of
1
) sorted by null
/external/jpeg/
wrjpgcom.c
418
char *
comment_arg
= NULL;
local
448
comment_arg
= argv[argn];
452
if (
comment_arg
[0] == '"') {
453
comment_arg
= (char *) malloc((size_t) MAX_COM_LENGTH);
454
if (
comment_arg
== NULL)
456
strcpy(
comment_arg
, argv[argn]+1);
458
comment_length = (unsigned int) strlen(
comment_arg
);
459
if (comment_length > 0 &&
comment_arg
[comment_length-1] == '"') {
460
comment_arg
[comment_length-1] = '\0'; /* zap terminating quote */
465
strcat(
comment_arg
, " ");
[
all
...]
Completed in 459 milliseconds