The questioner must be asking about https://github.com/brunow/BWStatusBar...
in this project
typedef void (^BWStatusBarBasicBlock)(void);
In fact, it typedefs a block whose parameter is void and whose return type is void.
In other words, when using the void (^)(void) type, you can use BWStatusBarBasicBlock instead. This is no different from typedef int myint, except that the defined type is changed to block.
The questioner must be asking about https://github.com/brunow/BWStatusBar...
in this projectIn fact, it typedefs a block whose parameter is void and whose return type is void.
In other words, when using the void (^)(void) type, you can use BWStatusBarBasicBlock instead. This is no different from typedef int myint, except that the defined type is changed to block.