fermium 20012.0.0-alpha.1

An opinionated crate of SDL2 bindings.
Documentation
//! Platform based functions.

use crate::c_char;

extern "C" {
  /// Gets the name of the platform.
  pub fn SDL_GetPlatform() -> *const c_char;
}