Lines Matching refs:cols
82 static void print_category(unsigned int category, unsigned int cols) in print_category() argument
99 if(longopt + longdesc > cols) in print_category()
100 longopt = cols - longdesc; in print_category()
106 if(opt + desclen >= (cols - 2)) { in print_category()
107 if(desclen < (cols - 2)) in print_category()
108 opt = (cols - 3) - desclen; in print_category()
117 static int get_category_content(const char *category, unsigned int cols) in get_category_content() argument
123 print_category(categories[i].category, cols); in get_category_content()
235 unsigned int cols = get_terminal_columns(); in tool_help() local
248 print_category(CURLHELP_IMPORTANT, cols); in tool_help()
250 get_categories_list(cols); in tool_help()
256 print_category(CURLHELP_ALL, cols); in tool_help()
303 else if(get_category_content(category, cols)) { in tool_help()