aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_blk.c
blob: db64f42c29798202edc29d15e6f13a3275533270 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "buf.h"
#include "core.h"

#include "libcmd/cmd.h"
#include "libcmd/cmd_parse.h"

extern file_t *g_file;
extern buf_t *g_buf;
extern int g_flags;

int c_blk( cmd_arg_t *arg )
{
	printf("FILE BLOCK SIZE %u\n", g_file->blk_size );
	printf("BUFFER BLOCK SIZE %d (MAX %d)\n", g_buf->size, g_buf->buf_size );

	return 0;
}