* @brief Gets whether the application was launched from a homebrew environment. * @return Whether the application was launched from a homebrew environment. */
| 16 | * @return Whether the application was launched from a homebrew environment. |
| 17 | */ |
| 18 | static inline bool envIsHomebrew(void) { |
| 19 | extern void* __service_ptr; |
| 20 | return __service_ptr != NULL; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * @brief Retrieves a handle from the environment handle list. |
no outgoing calls
no test coverage detected