clang-format

This commit is contained in:
2024-09-10 13:03:02 -04:00
parent 53c617d779
commit d66450e427
381 changed files with 28864 additions and 34170 deletions

View File

@@ -43,66 +43,61 @@
#include <unistd.h>
#include <err.h>
int
main(int argc, char *argv[])
{
static char writebuf[41] = "Twiddle dee dee, Twiddle dum dum.......\n";
static char readbuf[41];
int main(int argc, char *argv[]) {
static char writebuf[41] = "Twiddle dee dee, Twiddle dum dum.......\n";
static char readbuf[41];
const char *file;
int fd, rv;
const char *file;
int fd, rv;
if (argc == 0) {
warnx("No arguments - running on \"testfile\"");
file = "testfile";
}
else if (argc == 2) {
file = argv[1];
}
else {
errx(1, "Usage: filetest <filename>");
}
if (argc == 0) {
warnx("No arguments - running on \"testfile\"");
file = "testfile";
} else if (argc == 2) {
file = argv[1];
} else {
errx(1, "Usage: filetest <filename>");
}
fd = open(file, O_WRONLY|O_CREAT|O_TRUNC, 0664);
if (fd<0) {
err(1, "%s: open for write", file);
}
fd = open(file, O_WRONLY | O_CREAT | O_TRUNC, 0664);
if (fd < 0) {
err(1, "%s: open for write", file);
}
rv = write(fd, writebuf, 40);
if (rv < 0) {
err(1, "%s: write", file);
}
rv = write(fd, writebuf, 40);
if (rv<0) {
err(1, "%s: write", file);
}
rv = close(fd);
if (rv < 0) {
err(1, "%s: close (1st time)", file);
}
rv = close(fd);
if (rv<0) {
err(1, "%s: close (1st time)", file);
}
fd = open(file, O_RDONLY);
if (fd < 0) {
err(1, "%s: open for read", file);
}
fd = open(file, O_RDONLY);
if (fd<0) {
err(1, "%s: open for read", file);
}
rv = read(fd, readbuf, 40);
if (rv < 0) {
err(1, "%s: read", file);
}
rv = close(fd);
if (rv < 0) {
err(1, "%s: close (2nd time)", file);
}
/* ensure null termination */
readbuf[40] = 0;
rv = read(fd, readbuf, 40);
if (rv<0) {
err(1, "%s: read", file);
}
rv = close(fd);
if (rv<0) {
err(1, "%s: close (2nd time)", file);
}
/* ensure null termination */
readbuf[40] = 0;
if (strcmp(readbuf, writebuf)) {
errx(1, "Buffer data mismatch!");
}
if (strcmp(readbuf, writebuf)) {
errx(1, "Buffer data mismatch!");
}
rv = remove(file);
if (rv<0) {
err(1, "%s: remove", file);
}
printf("Passed filetest.\n");
return 0;
rv = remove(file);
if (rv < 0) {
err(1, "%s: remove", file);
}
printf("Passed filetest.\n");
return 0;
}