summaryrefslogtreecommitdiffstats
path: root/include/libbb.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-09-24 01:36:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-09-24 01:36:07 +0200
commitd97304aef21a7f3ac5a6699e3549e30507c760a3 (patch)
treedbc2225779b679585888348c0b7efdf799d7319d /include/libbb.h
parent0aab14790470bd9dd52323d9144c17fbba4ef4ad (diff)
downloadbarebox-d97304aef21a7f3ac5a6699e3549e30507c760a3.tar.gz
barebox-d97304aef21a7f3ac5a6699e3549e30507c760a3.tar.xz
add libbb functions
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
new file mode 100644
index 0000000000..9455564d82
--- /dev/null
+++ b/include/libbb.h
@@ -0,0 +1,9 @@
+
+#ifndef __LIBBB_H
+#define __LIBBB_H
+char *concat_path_file(const char *path, const char *filename);
+int execable_file(const char *name);
+char *find_execable(const char *filename);
+char* last_char_is(const char *s, int c);
+
+#endif /* __LIBBB_H */