aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/rmdir.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-11-13 17:14:08 -0600
committerRob Landley <rob@landley.net>2012-11-13 17:14:08 -0600
commit7aa651a6a4496d848f86de9b1e6b3a003256a01f (patch)
tree6995fb4b7cc2e90a6706b0239ebaf95d9dbab530 /toys/posix/rmdir.c
parent571b0706cce45716126776d0ad0f6ac65f4586e3 (diff)
downloadtoybox-7aa651a6a4496d848f86de9b1e6b3a003256a01f.tar.gz
Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
The actual code should be the same afterward, this is just cosmetic refactoring.
Diffstat (limited to 'toys/posix/rmdir.c')
-rw-r--r--toys/posix/rmdir.c42
1 files changed, 20 insertions, 22 deletions
diff --git a/toys/posix/rmdir.c b/toys/posix/rmdir.c
index be93cb69..289b0156 100644
--- a/toys/posix/rmdir.c
+++ b/toys/posix/rmdir.c
@@ -1,6 +1,4 @@
-/* vi: set sw=4 ts=4:
- *
- * rmdir.c - remove directory/path
+/* rmdir.c - remove directory/path
*
* Copyright 2008 Rob Landley <rob@landley.net>
*
@@ -9,35 +7,35 @@
USE_RMDIR(NEWTOY(rmdir, "<1p", TOYFLAG_BIN))
config RMDIR
- bool "rmdir"
- default y
- help
- usage: rmdir [-p] [dirname...]
- Remove one or more directories.
+ bool "rmdir"
+ default y
+ help
+ usage: rmdir [-p] [dirname...]
+ Remove one or more directories.
- -p Remove path.
+ -p Remove path.
*/
#include "toys.h"
static void do_rmdir(char *name)
{
- for (;;) {
- char *temp;
-
- if (rmdir(name)) {
- perror_msg("%s",name);
- return;
- }
- if (!toys.optflags) return;
- if (!(temp=strrchr(name,'/'))) return;
- *temp=0;
- }
+ for (;;) {
+ char *temp;
+
+ if (rmdir(name)) {
+ perror_msg("%s",name);
+ return;
+ }
+ if (!toys.optflags) return;
+ if (!(temp=strrchr(name,'/'))) return;
+ *temp=0;
+ }
}
void rmdir_main(void)
{
- char **s;
+ char **s;
- for (s=toys.optargs; *s; s++) do_rmdir(*s);
+ for (s=toys.optargs; *s; s++) do_rmdir(*s);
}