cake
/
p7utils
Archived
1
0
Fork 0
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
p7utils/src/p7os/stuff.c

31 lines
1.0 KiB
C

/* ************************************************************************** */
/* _____ _ */
/* stuff.c |_ _|__ _ _| |__ ___ _ _ */
/* | Project: p7os | |/ _ \| | | | '_ \ / _ \ | | | */
/* | | (_) | |_| | | | | __/ |_| | */
/* By: thomas <thomas@touhey.fr> |_|\___/ \__,_|_| |_|\___|\__, |.fr */
/* Last updated: 2016/09/28 06:00:10 |___/ */
/* */
/* ************************************************************************** */
#include "main.h"
/**
* get_os:
* Gather the OS.
*
* @arg handle the libp7 handle
* @arg dest the destination file
* @return if it worked
*/
int get_os(p7_handle_t *handle, FILE *dest)
{
/* TODO */
fprintf(stderr, "Unimplemented yet.\n");
(void)handle;
(void)dest;
/* then nothing */
return (0);
}