mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
8 lines
193 B
C++
8 lines
193 B
C++
|
#include <stdio.h>
|
||
|
#include <wireshark/ws_version.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("%d.%d.%d", WIRESHARK_VERSION_MAJOR, WIRESHARK_VERSION_MINOR,
|
||
|
WIRESHARK_VERSION_MICRO);
|
||
|
return 0;
|
||
|
}
|