diff toys/other/truncate.c @ 694:786841fdb1e0

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.
author Rob Landley <rob@landley.net>
date Tue, 13 Nov 2012 17:14:08 -0600
parents 7e846e281e38
children 6cc69be43c42
line wrap: on
line diff
--- a/toys/other/truncate.c	Tue Nov 13 16:13:45 2012 -0600
+++ b/toys/other/truncate.c	Tue Nov 13 17:14:08 2012 -0600
@@ -1,44 +1,43 @@
-/* vi: set sw=4 ts=4:
- *
- * truncate.c - set file length, extending sparsely if necessary
+/* truncate.c - set file length, extending sparsely if necessary
  *
  * Copyright 2011 Rob Landley <rob@landley.net>
 
 USE_TRUNCATE(NEWTOY(truncate, "<1s#|c", TOYFLAG_BIN))
 
 config TRUNCATE
-	bool "truncate"
-	default y
-	help
-	  usage: truncate [-c] -s file...
-	  Set length of file(s), extending sparsely if necessary.
+  bool "truncate"
+  default y
+  help
+    usage: truncate [-c] -s file...
 
-	  -c	Don't create file if it doesn't exist.
-	  -s	New size
+    Set length of file(s), extending sparsely if necessary.
+
+    -c	Don't create file if it doesn't exist.
+    -s	New size
 */
 
 #define FOR_truncate
 #include "toys.h"
 
 GLOBALS(
-	long size;
+  long size;
 )
 
 static void do_truncate(int fd, char *name)
 {
-	if (fd<0) return;
-	if (ftruncate(fd, TT.size)) {
-		perror_msg("failed to set '%s' to '%ld'", name, TT.size);
-		toys.exitval = EXIT_FAILURE;
-	}
+  if (fd<0) return;
+  if (ftruncate(fd, TT.size)) {
+    perror_msg("failed to set '%s' to '%ld'", name, TT.size);
+    toys.exitval = EXIT_FAILURE;
+  }
 }
 
 void truncate_main(void)
 {
-	int cr = !(toys.optflags&1);
+  int cr = !(toys.optflags&1);
 
-	// Create files with mask rwrwrw.
-	// Nonexistent files are only an error if we're supposed to create them.
-	loopfiles_rw(toys.optargs, O_WRONLY|(cr ? O_CREAT : 0), 0666, cr,
-		do_truncate);
+  // Create files with mask rwrwrw.
+  // Nonexistent files are only an error if we're supposed to create them.
+  loopfiles_rw(toys.optargs, O_WRONLY|(cr ? O_CREAT : 0), 0666, cr,
+    do_truncate);
 }