2011-05-22 21:36:34 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2011-05-24 07:56:38 -04:00
|
|
|
#include <libgen.h>
|
2011-05-22 21:36:34 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2011-05-24 07:56:38 -04:00
|
|
|
char *s;
|
|
|
|
size_t n;
|
2011-05-22 21:36:34 -04:00
|
|
|
|
|
|
|
if(argc < 2)
|
|
|
|
eprintf("usage: %s string [suffix]\n", argv[0]);
|
|
|
|
|
2011-05-24 07:56:38 -04:00
|
|
|
s = basename(argv[1]);
|
|
|
|
if(argc > 2 && strlen(s) > strlen(argv[2])) {
|
|
|
|
n = strlen(s) - strlen(argv[2]);
|
|
|
|
if(!strcmp(&s[n], argv[2]))
|
|
|
|
s[n] = '\0';
|
2011-05-22 21:36:34 -04:00
|
|
|
}
|
2011-05-24 07:56:38 -04:00
|
|
|
puts(s);
|
2011-05-22 21:36:34 -04:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|