URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [libgloss/] [scarts_16/] [write.c] - Rev 14
Go to most recent revision | Compare with Previous | Blame | View Log
#include "devops.h" extern const devops_t *devops_vec[]; int write (int file, char *ptr, int len) { if (file >= NUM_DEVOPS) return 0; return devops_vec[file]->write (file, ptr, len); }
Go to most recent revision | Compare with Previous | Blame | View Log