blob: 429a392d064030658597ee3b758cb3d13974fb74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/** \file
* \brief Dummy Printer
*
* See Copyright Notice in cd.h
*/
#include <stdlib.h>
#include "cd.h"
#include "cdprint.h"
cdContext* cdContextPrinter(void)
{
return NULL;
}
|