File: hello.c

package info (click to toggle)
libsdl3 3.4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,312 kB
  • sloc: ansic: 428,899; objc: 13,036; xml: 9,581; cpp: 8,769; perl: 4,667; python: 3,538; sh: 813; makefile: 271; cs: 56
file content (21 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2019 Collabora Ltd.
 * SPDX-License-Identifier: Zlib
 * (see "zlib/libpng" in debian/copyright)
 */

#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>

int
main (int argc, char **argv)
{
  if (!SDL_Init(0)) {
      SDL_Log("SDL_Init: %s", SDL_GetError());
      return 1;
  }

  SDL_Log("Hello, world!");
  SDL_Quit();
  return 0;
}