summaryrefslogtreecommitdiffstats
path: root/Ministro/jni/chmode.c
diff options
context:
space:
mode:
Diffstat (limited to 'Ministro/jni/chmode.c')
-rw-r--r--Ministro/jni/chmode.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/Ministro/jni/chmode.c b/Ministro/jni/chmode.c
new file mode 100644
index 0000000..ed73182
--- /dev/null
+++ b/Ministro/jni/chmode.c
@@ -0,0 +1,27 @@
+/*
+ Copyright (c) 2011, BogDan Vatra <bog_dan_ro@yahoo.com>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include <jni.h>
+#include <sys/stat.h>
+
+jint Java_org_kde_necessitas_ministro_MinistroActivity_nativeChmode(JNIEnv * env, jobject obj, jstring filePath, jint mode)
+{
+ const char *file = (*env)->GetStringUTFChars(env, filePath, 0);
+ int res = chmod(file, mode);
+ (*env)->ReleaseStringUTFChars(env, filePath, file);
+ return res;
+}