git
.
seregonwar
.com
mirror · live
Explore
Issues
Pulls
Activity
search // ⌘K
⌘K
Sign in
git.seregonwar.com
/
Seregon
/
zftpd
source
Seregon
/
zftpd
Zero-copy FTP/HTTP Daemon compatible with all POSIX systems
C
/
11.0 KB
/
No license
Star
·
0
Fork
·
0
Watch
·
1
Code
Issues
Pull requests
Releases
Activity
Insights
Settings
main
tests/test_size.c
raw
zftpd
/
tests
/
test_size.c
1
#include "ftp_types.h"
2
#include <stdio.h>
3
4
int main(void) {
5
printf("sizeof(ftp_session_t) = %zu bytes\n", sizeof(ftp_session_t));
6
printf("sizeof(ftp_server_context_t) = %zu bytes\n", sizeof(ftp_server_context_t));
7
return 0;
8
}
9