Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100728944
sbcpd_transfer.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Feb 2, 06:26
Size
399 B
Mime Type
text/x-c
Expires
Tue, Feb 4, 06:26 (2 d)
Engine
blob
Format
Raw Data
Handle
24022629
Attached To
R6620 SBCP Low-Level Driver
sbcpd_transfer.c
View Options
/**
* \file sbcp_transfer.c
*
* \date Aug 15, 2011
* \author Alexandre Tuleu
*/
#include "sbcpd_transfer.h"
#include <stdio.h>
sbcpd_transfer * sbcpd_create_transfer(){
printf("[DEBUG] Create some null transfer");
return NULL;
}
void sbcpd_free_transfer(sbcpd_transfer * transfer){
if(transfer){
printf("Destroying allocated transfer.");
}
printf("Transfer was not allocated");
}
Event Timeline
Log In to Comment