36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
/* ----------------------------------------------------------------------------
|
|
* -- _____ ______ _____ -
|
|
* -- |_ _| | ____|/ ____| -
|
|
* -- | | _ __ | |__ | (___ 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;
|
|
}
|