This is the mail archive of the gdb@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: char *lbasename(const char *) VS const char *lbasename() ...



On Tue, 12 Jun 2001, Andrew Cagney wrote:

> libiberty recently added the function:
> 
> 	char *lbasename (const char *name);
> 
> with semantics roughly equivalent to:
> 
> 	return (char *) name;
> 
> I'm thinking (serious :-) of sending a patch to the maintainers (GCC 
> list) asking that it changed to:
> 
> 	const char *lbasename (const char *name);
> 
> so that the fact that the string was constant isn't lost across the call 

I agree: if the argument is a `const char *', and the return value is
guaranteed to be within the argument string, it should also be `const
char *'.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]