12 lines
134 B
C++
12 lines
134 B
C++
#include <Stream.h>
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
Stream::Stream() {
|
|
|
|
}
|
|
|
|
size_t Stream::write(uint8_t c) {
|
|
return 0;
|
|
} |