cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

testfilesystem.c (954B)


      1/*
      2  Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
      3
      4  This software is provided 'as-is', without any express or implied
      5  warranty.  In no event will the authors be held liable for any damages
      6  arising from the use of this software.
      7
      8  Permission is granted to anyone to use this software for any purpose,
      9  including commercial applications, and to alter it and redistribute it
     10  freely.
     11*/
     12/* Simple test of power subsystem. */
     13
     14#include <stdio.h>
     15#include "SDL.h"
     16
     17int
     18main(int argc, char *argv[])
     19{
     20    /* Enable standard application logging */
     21    SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
     22
     23    if (SDL_Init(0) == -1) {
     24        SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init() failed: %s\n", SDL_GetError());
     25        return 1;
     26    }
     27
     28    SDL_Log("base path: '%s'\n", SDL_GetBasePath());
     29    SDL_Log("pref path: '%s'\n", SDL_GetPrefPath("libsdl", "testfilesystem"));
     30
     31    SDL_Quit();
     32    return 0;
     33}