mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
16 lines
263 B
C++
16 lines
263 B
C++
#include <stdio.h>
|
|
#include <sodium.h>
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
printf("hallo Welt\n");
|
|
|
|
if (sodium_init() < 0) {
|
|
/* panic! the library couldn't be initialized, it is not safe to use */
|
|
}
|
|
else {
|
|
printf("sodium initalized\n");
|
|
}
|
|
|
|
return 42;
|
|
} |