| 934 | } |
| 935 | |
| 936 | static const char *ha_normalized_cwd(yyjson_val *root, char *buffer, size_t buffer_size) { |
| 937 | return ha_normalized_cwd_with_server(root, NULL, buffer, buffer_size); |
| 938 | } |
| 939 | |
| 940 | static bool ha_lifecycle_event_supported(const char *event) { |
| 941 | return event && (strcmp(event, "SessionStart") == 0 || strcmp(event, "SubagentStart") == 0); |
no test coverage detected