From: Banana Date: Tue, 7 Apr 2020 18:47:56 +0000 (+0200) Subject: first steps in a c client X-Git-Tag: v1.0^2~7 X-Git-Url: http://91.132.146.200/gitweb/?a=commitdiff_plain;h=87ce8d25923542e286d2f5dc378d498af00b6fb8;p=selfpaste.git first steps in a c client --- diff --git a/client/c-client/selfpaste b/client/c-client/selfpaste new file mode 100755 index 0000000..5bf5268 Binary files /dev/null and b/client/c-client/selfpaste differ diff --git a/client/c-client/selfpaste.c b/client/c-client/selfpaste.c new file mode 100644 index 0000000..fecf39f --- /dev/null +++ b/client/c-client/selfpaste.c @@ -0,0 +1,18 @@ +/* + * This program is free software: you can redistribute it and/or modify + * it under the terms of the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE + * You should have received a copy of the + * COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 + * along with this program. If not, see http://www.sun.com/cddl/cddl.html + * + * 2019 - 2020 https://://www.bananas-playground.net/projekt/selfpaste + */ + +#include + +int main() { + // https://www.programmingsimplified.com/c-program-examples + printf("Writing comments is very useful.\n"); + + return(0); +}