003 File Manager
Current Path:
/usr/src/contrib/dma
usr
/
src
/
contrib
/
dma
/
📁
..
📄
INSTALL
(1.07 KB)
📄
LICENSE
(5.31 KB)
📄
Makefile
(2.98 KB)
📄
Makefile.etc
(300 B)
📄
README.markdown
(779 B)
📄
TODO
(133 B)
📄
VERSION
(6 B)
📄
aliases_parse.y
(1.52 KB)
📄
aliases_scan.l
(463 B)
📄
auth.conf
(186 B)
📄
base64.c
(3.42 KB)
📄
conf.c
(6.17 KB)
📄
crypto.c
(9.17 KB)
📄
dfcompat.c
(3.58 KB)
📄
dfcompat.h
(406 B)
📄
dma-mbox-create.c
(5.02 KB)
📄
dma.8
(8.71 KB)
📄
dma.c
(13.16 KB)
📄
dma.conf
(2.28 KB)
📄
dma.h
(6.37 KB)
📄
dns.c
(6.65 KB)
📄
get-version.sh
(177 B)
📄
local.c
(6.58 KB)
📄
mail.c
(9.81 KB)
📄
net.c
(13.19 KB)
📄
spool.c
(9.5 KB)
📁
test
📄
util.c
(7.19 KB)
Editing: aliases_scan.l
%{ #include <string.h> #include "dma.h" #include "aliases_parse.h" #define YY_NO_INPUT %} %option yylineno %option nounput %% [^:,#[:space:][:cntrl:]]+ {yylval.ident = strdup(yytext); return T_IDENT;} ^([[:blank:]]*(#.*)?\n)+ ;/* ignore empty lines */ [:,\n] return yytext[0]; (\n?[[:blank:]]+|#.*)+ ;/* ignore whitespace and continuation */ \\\n ;/* ignore continuation. not allowed in comments */ . return T_ERROR; <<EOF>> return T_EOF; %%
Upload File
Create Folder