P02's qr-code lab added

This commit is contained in:
Andreas Gieriet
2020-02-22 03:52:51 +01:00
parent a9bc693814
commit 75495f40a2
5 changed files with 225 additions and 0 deletions
@@ -0,0 +1,35 @@
/* ----------------------------------------------------------------------------
* -- _____ ______ _____ -
* -- |_ _| | ____|/ ____| -
* -- | | _ __ | |__ | (___ Institute of Embedded Systems -
* -- | | | '_ \| __| \___ \ Zuercher Hochschule Winterthur -
* -- _| |_| | | | |____ ____) | (University of Applied Sciences) -
* -- |_____|_| |_|______|_____/ 8401 Winterthur, Switzerland -
* ----------------------------------------------------------------------------
*/
/**
* @file
* @brief Lab P02 QR Code
* @remark prerequisite: sudo apt install qrencode
*/
#include <stdio.h>
#include <stdlib.h>
// define local macros
// BEGIN-STUDENTS-TO-ADD-CODE
// END-STUDENTS-TO-ADD-CODE
/**
* @brief main function
* @returns always success (0)
*/
int main()
{
// BEGIN-STUDENTS-TO-ADD-CODE
// END-STUDENTS-TO-ADD-CODE
return EXIT_SUCCESS;
}