remove kittyzapper PoC

pull/1466/head
nick black 3 years ago
parent 721e208ce2
commit 6f446f94de
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -1,24 +0,0 @@
#include <notcurses/direct.h>
int main(void){
struct ncdirect* n = ncdirect_core_init(NULL, NULL, 0);
if(!n){
return EXIT_FAILURE;
}
ncdirect_set_fg_rgb8(n, 100, 100, 100);
ncdirect_set_bg_rgb8(n, 0xff, 0xff, 0xff);
printf("a");
ncdirect_set_bg_rgb8(n, 0, 0, 0);
printf("b");
printf(" ");
printf(" ");
ncdirect_set_bg_rgb8(n, 0, 0, 1);
printf("c");
printf(" ");
printf(" ");
ncdirect_set_bg_rgb8(n, 0xff, 0xff, 0xff);
printf("d");
printf("\n");
ncdirect_stop(n);
return EXIT_SUCCESS;
}
Loading…
Cancel
Save