basename.c\misc\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/misc/basename.c
blob: 438377b6477869cc746773b268ab0e315d7901c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string.h>
#include <libgen.h>
char *basename(char *s)
{
	size_t i;
	if (!s || !*s) return ".";
	i = strlen(s)-1;
	for (; i&&s[i]=='/'; i--) s[i] = 0;
	for (; i&&s[i-1]!='/'; i--);
	return s+i;
}
weak_alias(basename, __xpg_basename);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月10日 13:55:19 +0000

AltStyle によって変換されたページ (->オリジナル) /