14 lines
235 B
C
Raw Normal View History

2017-10-01 23:36:50 +02:00
#include "Test.h"
2017-10-04 01:56:05 +02:00
char readWriteData[6] = "Three";
2017-10-01 23:36:50 +02:00
int main()
{
2017-10-04 01:56:05 +02:00
// constant initialized data
2017-10-01 23:36:50 +02:00
TEST_LOG_SIZED("One",3);
TEST_LOG_SIZED("Two",3);
2017-10-04 01:56:05 +02:00
// read-write initialized data
TEST_LOG_SIZED(readWriteData,5);
2017-10-01 23:36:50 +02:00
return 0;
}