fixed
This commit is contained in:
parent
b1ab591e39
commit
1b9dc6d7dc
10
README.md
10
README.md
@ -3,3 +3,13 @@ Own implementation of *nix utils
|
|||||||
License: wtfpl
|
License: wtfpl
|
||||||
|
|
||||||
https://trivial.technology/
|
https://trivial.technology/
|
||||||
|
|
||||||
|
|
||||||
|
Unportable:
|
||||||
|
proc_parser
|
||||||
|
ps
|
||||||
|
dmesg
|
||||||
|
mount
|
||||||
|
umount
|
||||||
|
nproc
|
||||||
|
pivot_root
|
||||||
|
1
TODO
1
TODO
@ -49,6 +49,5 @@ BUGS:
|
|||||||
xargs (getopt with glibc)
|
xargs (getopt with glibc)
|
||||||
|
|
||||||
FIX:
|
FIX:
|
||||||
ps (proc_parser.h)
|
|
||||||
echo (escape)
|
echo (escape)
|
||||||
que (unicode)
|
que (unicode)
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/stat.h>
|
|
||||||
#include "mode_to_str.h"
|
#include "mode_to_str.h"
|
||||||
|
|
||||||
char mode[11];
|
char mode[11];
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#ifndef _MODE_TO_STR_H
|
#ifndef _MODE_TO_STR_H
|
||||||
#define _MODE_TO_STR_H
|
#define _MODE_TO_STR_H
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
char *mu_mode_2_str(mode_t file_mode);
|
char *mu_mode_2_str(mode_t file_mode);
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#ifndef _PARSE_MODE_H
|
#ifndef _PARSE_MODE_H
|
||||||
#define _PARSE_MODE_H
|
#define _PARSE_MODE_H
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
mode_t mu_parse_mode(const char *s, mode_t cur_mode);
|
mode_t mu_parse_mode(const char *s, mode_t cur_mode);
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#ifndef _PARSE_MOUNT_H
|
#ifndef _PARSE_MOUNT_H
|
||||||
#define _PARSE_MOUNT_H
|
#define _PARSE_MOUNT_H
|
||||||
#include <sys/mount.h>
|
#include <sys/mount.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char *opt;
|
char *opt;
|
||||||
|
@ -51,4 +51,3 @@ int pw_check(const char *prog_name, const struct passwd *pw, const char *pass) {
|
|||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#define _XOPEN_SOURCE
|
#define _XOPEN_SOURCE
|
||||||
#define __USE_POSIX199309
|
#define _POSIX_C_SOURCE 1999309L
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user