Compare commits

...

3 Commits

Author SHA1 Message Date
DTB
46f0d4955f pschdir(1): add source file 2024-07-23 17:39:55 -06:00
DTB
a8c40de747 pschdir(1) sans documentation, from trinity/src 2024-07-23 17:39:03 -06:00
DTB
e0b192bd4b languages.toml: add Helix editor configuration 2024-07-23 17:33:14 -06:00
3 changed files with 50 additions and 1 deletions

14
.helix/languages.toml Normal file
View File

@ -0,0 +1,14 @@
[[language]]
file-types = ["c"]
indent.unit = "\t"
indent.tab-width = 4
language-id = "c"
name = "c"
roots = ["Makefile"]
scope = "source.c"
[[language]]
name = "rust"
auto-format = false
indent.unit = "\t"
indent.tab-width = 4

View File

@ -32,7 +32,7 @@ RUSTLIBS = --extern getopt=build/o/libgetopt.rlib \
CFLAGS += -I$(SYSEXITS)
.PHONY: all
all: dj false fop hru intcmp mm npc rpn scrut str strcmp swab true
all: dj false fop hru intcmp mm npc pschdir rpn scrut str strcmp swab true
# keep build/include until bindgen(1) has stdin support
# https://github.com/rust-lang/rust-bindgen/issues/2703
@ -122,6 +122,11 @@ npc: build/bin/npc
build/bin/npc: src/npc.c build
$(CC) $(CFLAGAS) -o $@ src/npc.c
.PHONY: pschdir
pschdir: build/bin/pschdir
build/bin/pschdir: src/pschdir.c build
$(CC) $(CFLAGS) -o $@ src/pschdir.c
.PHONY: rpn
rpn: build/bin/rpn
build/bin/rpn: src/rpn.rs build rustlibs

30
src/pschdir.c Normal file
View File

@ -0,0 +1,30 @@
#include <errno.h> /* EACCESS, ELOOP, ENAMETOOLONG, ENOENT, ENOTDIR, errno */
#include <stdio.h> /* fprintf(3), stderr */
#include <string.h> /* strerror(3) */
#include <sysexits.h> /* EX_OSERR, EX_NOPERM, EX_NOINPUT, EX_UNAVAILABLE,
* EX_USAGE */
#include <unistd.h> /* chdir(2) */
char *program_name = "pschdir";
int main(int argc, char *argv[]){
if (argc < 3) {
fprintf(stderr, "Usage: %s [directory] [command (argument...)]\n",
argv[0] == NULL ? program_name : argv[0]);
return EX_USAGE;
}
if(chdir(argv[1]) != 0){
fprintf(stderr, "%s: %s: %s\n", argv[0], argv[1], strerror(errno));
switch (errno) {
case ENAMETOOLONG: return EX_OSERR;
case EACCES: return EX_NOPERM;
case ENOENT:
case ENOTDIR: return EX_NOINPUT;
default: return EX_UNAVAILABLE;
}
}
execvp(argv[2], &argv[2]);
}