mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-05 11:29:41 +00:00
13 lines
178 B
C
13 lines
178 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2007 Laurent Vivier <Laurent@lvivier.info>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "libmap.h"
|
||
|
|
||
|
int map_get_blocksize(map_t *map)
|
||
|
{
|
||
|
return map->device->get_blocksize(map->device->data);
|
||
|
}
|