File creation time

Hi Everybody,
Is their any functions to find out the file creation time in 'C'

man fstat

UNIX filesystems have no creation time for files. The ctime is the last time the file metadata (inode) was changed - this most often amounts to when the file was created. But there is no guarantee somebody did not execute chmod or some other command on the file - a command that changes ctime.