# fsVarsGetEVarId The **fsVarsGetEVarId** function can be used to get the `FsEVarId` of a specific `EVar`.   ##### Syntax ``` wasm FsEVarId fsVarsGetEVarId( const char* eVarName ); ```   ##### Parameters {{< table-wrapper >}} | Parameters | Description | |------------|-------------------------| | `eVarName` | The name of the `EVar`. | {{< /table-wrapper >}}   ##### Return Values The function returns the ID associated to the given name. If an error occurred, the function will return `FS_VAR_EVAR_NONE`.   ##### Example ``` wasm FsEVarId eVarId = fsVarsGetEVarId("ZULU TIME"); ```