Show the name of the sketch on a display

Is there a function whose result is the name of the sketch/file? I'm sending data to Xively and one of the data strings being sent is the current version of the sketch that's running, but I change it (the sketch version, e.g. "homeMonitorV1_17.ino") manually when updating it and would rather have a dynamic variable keep track.

Is there a function whose result is the name of the sketch/file?

A function, no. A constant, yes: FILE

Thanks.

There are several such preprocessor directives defined for you:

LINE Integer value representing the current line in the source code file being compiled.
FILE A string literal containing the presumed name of the source file being compiled.
DATE A string literal in the form "Mmm dd yyyy" containing the date in which the compilation process began.
TIME A string literal in the form "hh:mm:ss" containing the time at which the compilation process began.

This is exactly the kind of help I was looking for; thanks.