Look up the `access()` function. You can replace your function with

    if( access( fname, F_OK ) ) {
        // file exists
    } else {
        // file doesn't exist
    }