Re: macro to print filename

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



no need for an array, just a pointer is enough.

#include <stdio.h>

int main()
{
        char filename[] = __FILE__, *basename;
        basename = filename + sizeof(filename) - 2;
        while( basename+1 != filename && *basename != '/' ) {
                basename--;
        }
        basename++;
        printf("%s\n%s\n", filename, basename);
        return 0;
}

On Thu, Jun 2, 2011 at 00:07, ratheesh kannoth <ratheesh.ksz@xxxxxxxxx> wrote:
> __FILE__ macro prints relative path name of the file. I need only
> filename. How to extract this ?
>
> I dont want to use any string library - since it includes more
> Processing and needs to store the character array in executable. IS
> there any method at preprocessing level to do this .
> --
> To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at Âhttp://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Assembler]     [Git]     [Kernel List]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [C Programming]     [Yosemite Campsites]     [Yosemite News]     [GCC Help]

  Powered by Linux