Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
07cc7983
...
07cc79832d17d327640c8a61c5a33612d36f2ace
authored
2006-01-25 16:22:38 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(__argp_base_name): New function
1 parent
e66c276c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
07cc798
...
...
@@ -1334,3 +1334,11 @@ mu_is_proto (const char *p)
return
0
;
}
char
*
__argp_base_name
(
const
char
*
arg
)
{
char
*
p
=
strrchr
(
arg
,
'/'
);
return
p
?
p
+
1
:
arg
;
}
...
...
Please
register
or
sign in
to post a comment