X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=shell.h;h=243e4678c7fa80b19496c31ae49a5d4106e3f100;hb=ac50fbac377e32b98d2de396f016ea81e8ee9961;hp=38ab51fcc7942de1404068a13ed6998bceee9aa0;hpb=4539d736f1aff232857a854fd2a68df0c98d9f34;p=platform%2Fupstream%2Fbash.git diff --git a/shell.h b/shell.h index 38ab51f..243e467 100644 --- a/shell.h +++ b/shell.h @@ -96,6 +96,8 @@ extern int startup_state; extern int subshell_environment; extern int shell_compatibility_level; +extern int locale_mb_cur_max; + /* Structure to pass around that holds a bitmap of file descriptors to close, and the size of that structure. Used in execute_cmd.c. */ struct fd_bitmap { @@ -171,9 +173,9 @@ typedef struct _sh_parser_state_t { typedef struct _sh_input_line_state_t { char *input_line; - int input_line_index; - int input_line_size; - int input_line_len; + size_t input_line_index; + size_t input_line_size; + size_t input_line_len; } sh_input_line_state_t; /* Let's try declaring these here. */