* @brief VMX-root compatible strlen * @param s A pointer to the string * * @return UINT32 */
| 858 | * @return UINT32 |
| 859 | */ |
| 860 | UINT32 |
| 861 | VmFuncVmxCompatibleStrlen(const CHAR * s) |
| 862 | { |
| 863 | return VmxCompatibleStrlen(s); |
| 864 | } |
| 865 | |
| 866 | /** |
| 867 | * @brief VMX-root compatible strlen |
no test coverage detected