mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
39 lines
770 B
C
39 lines
770 B
C
/*
|
|
* Copyright (C) 2019 Kaspar Schleiser <kaspar@schleiser.de>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief test application for including files as blobs
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include "fmt.h"
|
|
#include "blob/blobtest.txt.h"
|
|
#include "blob/blob_subdir/blobtest_subdir.txt.h"
|
|
|
|
void blobtest_bin_print(void);
|
|
|
|
int main(void)
|
|
{
|
|
print((char *)blobtest_txt, blobtest_txt_len);
|
|
print("\n", 1);
|
|
|
|
print((char *)blobtest_subdir_txt, blobtest_subdir_txt_len);
|
|
print("\n", 1);
|
|
|
|
blobtest_bin_print();
|
|
|
|
return 0;
|
|
}
|