func IsKeyboardInstalled() bool { var b bool b = bool(C.al_is_keyboard_installed()) return b }
// Checks if the Allegro keyboard module is installed or not. func IsKeyboardInstalled() bool { return bool(C.al_is_keyboard_installed()) }