mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
146 lines
18 KiB
HTML
146 lines
18 KiB
HTML
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
|
|
<html xmlns='http://www.w3.org/1999/xhtml'>
|
|
<head>
|
|
<title>src/util.c</title>
|
|
<meta name='robots' content='noindex,nofollow' />
|
|
<meta name='generator' content='GLOBAL-6.6.11' />
|
|
<meta http-equiv='Content-Style-Type' content='text/css' />
|
|
<link rel='stylesheet' type='text/css' href='../style.css' />
|
|
</head>
|
|
<body>
|
|
<!-- beginning of fixed guide -->
|
|
<div id='guide'><ul>
|
|
<li><a href='#L57'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
|
|
<li><a href='#L85'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
|
|
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
|
|
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
|
|
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
|
|
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
|
|
<li class='standout'><span><a href='../files/src.html'>src</a>/util.c</span></li>
|
|
</ul></div>
|
|
<!-- end of fixed guide -->
|
|
<div align='right'>Manual pages:
|
|
<a href=man/mc.html>mc</a> • <a href=man/mcdiff.html>mcdiff</a> • <a href=man/mcedit.html>mcedit</a> • <a href=man/mcview.html>mcview</a>
|
|
</div>
|
|
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/src.html'>src</a>/util.c</h2>
|
|
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L57'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L85'><img class='icon' src='../icons/last.png' alt='[last]' /></a><img class='icon' src='../icons/n_top.png' alt='[top]' /><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a> <input type='text' readonly onfocus='this.select();' value='+1 src/util.c' /> */</em>
|
|
<hr />
|
|
<h2 class='header'>DEFINITIONS</h2>
|
|
This source file includes following definitions.
|
|
<ol>
|
|
<li><a href='#L57' title='Defined at 57.'>check_for_default</a></li>
|
|
<li><a href='#L85' title='Defined at 85.'>file_error_message</a></li>
|
|
</ol>
|
|
<hr />
|
|
<pre>
|
|
<a id='L1' name='L1'></a> 1 <em class='comment'>/*</em>
|
|
<a id='L2' name='L2'></a> 2 <em class='comment'> Various non-library utilities</em>
|
|
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
|
|
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 2003-2025</em>
|
|
<a id='L5' name='L5'></a> 5 <em class='comment'> Free Software Foundation, Inc.</em>
|
|
<a id='L6' name='L6'></a> 6 <em class='comment'></em>
|
|
<a id='L7' name='L7'></a> 7 <em class='comment'> Written by:</em>
|
|
<a id='L8' name='L8'></a> 8 <em class='comment'> Adam Byrtek, 2003</em>
|
|
<a id='L9' name='L9'></a> 9 <em class='comment'> Slava Zanko <slavazanko@gmail.com>, 2013</em>
|
|
<a id='L10' name='L10'></a> 10 <em class='comment'></em>
|
|
<a id='L11' name='L11'></a> 11 <em class='comment'> This file is part of the Midnight Commander.</em>
|
|
<a id='L12' name='L12'></a> 12 <em class='comment'></em>
|
|
<a id='L13' name='L13'></a> 13 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
|
|
<a id='L14' name='L14'></a> 14 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
|
|
<a id='L15' name='L15'></a> 15 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
|
|
<a id='L16' name='L16'></a> 16 <em class='comment'> or (at your option) any later version.</em>
|
|
<a id='L17' name='L17'></a> 17 <em class='comment'></em>
|
|
<a id='L18' name='L18'></a> 18 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
|
|
<a id='L19' name='L19'></a> 19 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
|
|
<a id='L20' name='L20'></a> 20 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
|
|
<a id='L21' name='L21'></a> 21 <em class='comment'> GNU General Public License for more details.</em>
|
|
<a id='L22' name='L22'></a> 22 <em class='comment'></em>
|
|
<a id='L23' name='L23'></a> 23 <em class='comment'> You should have received a copy of the GNU General Public License</em>
|
|
<a id='L24' name='L24'></a> 24 <em class='comment'> along with this program. If not, see <https://www.gnu.org/licenses/>.</em>
|
|
<a id='L25' name='L25'></a> 25 <em class='comment'> */</em>
|
|
<a id='L26' name='L26'></a> 26
|
|
<a id='L27' name='L27'></a> 27 <em class='sharp'>#include</em> <config.h>
|
|
<a id='L28' name='L28'></a> 28
|
|
<a id='L29' name='L29'></a> 29 <em class='sharp'>#include</em> <errno.h>
|
|
<a id='L30' name='L30'></a> 30
|
|
<a id='L31' name='L31'></a> 31 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
|
|
<a id='L32' name='L32'></a> 32 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>lib/util.h</a>"
|
|
<a id='L33' name='L33'></a> 33 <em class='sharp'>#include</em> "<a href='lib--widget.h.html'>lib/widget.h</a>"
|
|
<a id='L34' name='L34'></a> 34
|
|
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> "<a href='src--filemanager--file.h.html'>src/filemanager/file.h</a>"
|
|
<a id='L36' name='L36'></a> 36 <em class='sharp'>#include</em> "<a href='src--filemanager--filegui.h.html'>src/filemanager/filegui.h</a>"
|
|
<a id='L37' name='L37'></a> 37
|
|
<a id='L38' name='L38'></a> 38 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>util.h</a>"
|
|
<a id='L39' name='L39'></a> 39
|
|
<a id='L40' name='L40'></a> 40 <em class='comment'>/*** global variables ****************************************************************************/</em>
|
|
<a id='L41' name='L41'></a> 41
|
|
<a id='L42' name='L42'></a> 42 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
|
|
<a id='L43' name='L43'></a> 43
|
|
<a id='L44' name='L44'></a> 44 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
|
|
<a id='L45' name='L45'></a> 45
|
|
<a id='L46' name='L46'></a> 46 <em class='comment'>/*** file scope variables ************************************************************************/</em>
|
|
<a id='L47' name='L47'></a> 47
|
|
<a id='L48' name='L48'></a> 48 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L49' name='L49'></a> 49 <em class='comment'>/*** file scope functions ************************************************************************/</em>
|
|
<a id='L50' name='L50'></a> 50 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L51' name='L51'></a> 51
|
|
<a id='L52' name='L52'></a> 52 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L53' name='L53'></a> 53 <em class='comment'>/*** public functions ****************************************************************************/</em>
|
|
<a id='L54' name='L54'></a> 54 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L55' name='L55'></a> 55
|
|
<a id='L56' name='L56'></a> 56 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
|
|
<a id='L57' name='L57'></a> 57 <a href='../R/check_for_default.html' title='Multiple referred from 8 places.'>check_for_default</a> (<strong class='reserved'>const</strong> <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/default_file_vpath.html' title='Multiple used in 4 places.'>default_file_vpath</a>, <strong class='reserved'>const</strong> <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/file_vpath.html' title='Multiple used in 20 places.'>file_vpath</a>)
|
|
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L85'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L85'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a> <input type='text' readonly onfocus='this.select();' value='+57 src/util.c' /> */</em>
|
|
<a id='L58' name='L58'></a> 58 <em class='brace'>{</em>
|
|
<a id='L59' name='L59'></a> 59 <strong class='reserved'>if</strong> (!<a href='../Y/exist_file.html' title='Multiple used in 43 places.'>exist_file</a> (<a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/file_vpath.html' title='Multiple used in 20 places.'>file_vpath</a>)))
|
|
<a id='L60' name='L60'></a> 60 <em class='brace'>{</em>
|
|
<a id='L61' name='L61'></a> 61 <a href='../S/src--filemanager--filegui.h.html#L155' title='Defined at 155 in src/filemanager/filegui.h.'>file_op_context_t</a> *<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>;
|
|
<a id='L62' name='L62'></a> 62
|
|
<a id='L63' name='L63'></a> 63 <strong class='reserved'>if</strong> (!<a href='../Y/exist_file.html' title='Multiple used in 43 places.'>exist_file</a> (<a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/default_file_vpath.html' title='Multiple used in 4 places.'>default_file_vpath</a>)))
|
|
<a id='L64' name='L64'></a> 64 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
|
|
<a id='L65' name='L65'></a> 65
|
|
<a id='L66' name='L66'></a> 66 <a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a> = <a href='../S/src--filemanager--filegui.c.html#L761' title='Defined at 761 in src/filemanager/filegui.c.'>file_op_context_new</a> (<a href='../S/src--filemanager--filegui.h.html#L30' title='Defined at 30 in src/filemanager/filegui.h.'>OP_COPY</a>);
|
|
<a id='L67' name='L67'></a> 67 <a href='../S/src--filemanager--filegui.c.html#L861' title='Defined at 861 in src/filemanager/filegui.c.'>file_progress_ui_create</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, 0, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>);
|
|
<a id='L68' name='L68'></a> 68 <a href='../S/src--filemanager--file.c.html#L2282' title='Defined at 2282 in src/filemanager/file.c.'>copy_file_file</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>, <a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/default_file_vpath.html' title='Multiple used in 4 places.'>default_file_vpath</a>), <a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/file_vpath.html' title='Multiple used in 20 places.'>file_vpath</a>));
|
|
<a id='L69' name='L69'></a> 69 <a href='../S/src--filemanager--filegui.c.html#L797' title='Defined at 797 in src/filemanager/filegui.c.'>file_op_context_destroy</a> (<a href='../Y/ctx.html' title='Multiple used in 598 places.'>ctx</a>);
|
|
<a id='L70' name='L70'></a> 70 <em class='brace'>}</em>
|
|
<a id='L71' name='L71'></a> 71
|
|
<a id='L72' name='L72'></a> 72 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
|
|
<a id='L73' name='L73'></a> 73 <em class='brace'>}</em>
|
|
<a id='L74' name='L74'></a> 74
|
|
<a id='L75' name='L75'></a> 75 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
<a id='L76' name='L76'></a> 76 <em class='comment'>/**</em>
|
|
<a id='L77' name='L77'></a> 77 <em class='comment'> * Report error with one file using errno. Unlike file_error(), this function contains only one</em>
|
|
<a id='L78' name='L78'></a> 78 <em class='comment'> * button "OK" and returns nothing.</em>
|
|
<a id='L79' name='L79'></a> 79 <em class='comment'> *</em>
|
|
<a id='L80' name='L80'></a> 80 <em class='comment'> * @param format printf()-like format for message</em>
|
|
<a id='L81' name='L81'></a> 81 <em class='comment'> * @param file file name. Can be NULL.</em>
|
|
<a id='L82' name='L82'></a> 82 <em class='comment'> */</em>
|
|
<a id='L83' name='L83'></a> 83
|
|
<a id='L84' name='L84'></a> 84 <strong class='reserved'>void</strong>
|
|
<a id='L85' name='L85'></a> 85 <a href='../R/file_error_message.html' title='Multiple referred from 37 places.'>file_error_message</a> (<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/format.html' title='Multiple used in 125 places.'>format</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/filename.html' title='Multiple used in 201 places.'>filename</a>)
|
|
<em class='comment'>/* <a href='#L57'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L57'><img class='icon' src='../icons/first.png' alt='[first]' /></a><img class='icon' src='../icons/n_last.png' alt='[last]' /><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a> <input type='text' readonly onfocus='this.select();' value='+85 src/util.c' /> */</em>
|
|
<a id='L86' name='L86'></a> 86 <em class='brace'>{</em>
|
|
<a id='L87' name='L87'></a> 87 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/error_string.html' title='Multiple used in 3 places.'>error_string</a> = <a href='../S/lib--util.c.html#L685' title='Defined at 685 in lib/util.c.'>unix_error_string</a> (<a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a>);
|
|
<a id='L88' name='L88'></a> 88
|
|
<a id='L89' name='L89'></a> 89 <strong class='reserved'>if</strong> (<a href='../Y/filename.html' title='Multiple used in 201 places.'>filename</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> || *<a href='../Y/filename.html' title='Multiple used in 201 places.'>filename</a> == '\0')
|
|
<a id='L90' name='L90'></a> 90 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../S/lib--widget--wtools.h.html#L14' title='Defined at 14 in lib/widget/wtools.h.'>MSG_ERROR</a>, "%s\n%s", <a href='../Y/format.html' title='Multiple used in 125 places.'>format</a>, <a href='../Y/error_string.html' title='Multiple used in 3 places.'>error_string</a>);
|
|
<a id='L91' name='L91'></a> 91 <strong class='reserved'>else</strong>
|
|
<a id='L92' name='L92'></a> 92 <em class='brace'>{</em>
|
|
<a id='L93' name='L93'></a> 93 <strong class='reserved'>char</strong> *<a href='../Y/full_format.html' title='Multiple used in 8 places.'>full_format</a>;
|
|
<a id='L94' name='L94'></a> 94
|
|
<a id='L95' name='L95'></a> 95 <a href='../Y/full_format.html' title='Multiple used in 8 places.'>full_format</a> = <a href='../Y/g_strconcat.html' title='Multiple used in 70 places.'>g_strconcat</a> (<a href='../Y/format.html' title='Multiple used in 125 places.'>format</a>, "\n", <a href='../Y/error_string.html' title='Multiple used in 3 places.'>error_string</a>, (<strong class='reserved'>char</strong> *) <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
|
|
<a id='L96' name='L96'></a> 96 <em class='comment'>// delete password and try to show a full path</em>
|
|
<a id='L97' name='L97'></a> 97 <a href='../D/message.html' title='Multiple defined in 6 places.'>message</a> (<a href='../S/lib--widget--wtools.h.html#L31' title='Defined at 31 in lib/widget/wtools.h.'>D_ERROR</a>, <a href='../S/lib--widget--wtools.h.html#L14' title='Defined at 14 in lib/widget/wtools.h.'>MSG_ERROR</a>, <a href='../Y/full_format.html' title='Multiple used in 8 places.'>full_format</a>, <a href='../S/lib--util.c.html#L306' title='Defined at 306 in lib/util.c.'>path_trunc</a> (<a href='../Y/filename.html' title='Multiple used in 201 places.'>filename</a>, -1));
|
|
<a id='L98' name='L98'></a> 98 <a href='../Y/g_free.html' title='Multiple used in 1114 places.'>g_free</a> (<a href='../Y/full_format.html' title='Multiple used in 8 places.'>full_format</a>);
|
|
<a id='L99' name='L99'></a> 99 <em class='brace'>}</em>
|
|
<a id='L100' name='L100'></a> 100 <em class='brace'>}</em>
|
|
<a id='L101' name='L101'></a> 101
|
|
<a id='L102' name='L102'></a> 102 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
|
|
</pre>
|
|
<hr />
|
|
<a id='BOTTOM' name='BOTTOM'></a>
|
|
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L57'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L85'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><img class='icon' src='../icons/n_bottom.png' alt='[bottom]' /><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a> <input type='text' readonly onfocus='this.select();' value='+102 src/util.c' /> */</em>
|
|
</body>
|
|
</html>
|