summaryrefslogtreecommitdiff
path: root/conf/pam_conv1/pam_conv_l.l
diff options
context:
space:
mode:
authorLorry <lorry@roadtrain.codethink.co.uk>2012-07-23 11:07:21 +0100
committerLorry <lorry@roadtrain.codethink.co.uk>2012-07-23 11:07:21 +0100
commit7e99712021a572e6ca85ff8454d3b322bfbeaa6e (patch)
tree6577e57ca2aab59b4b6ed8f21dfdbe349c028e49 /conf/pam_conv1/pam_conv_l.l
downloadlinux-pam-7e99712021a572e6ca85ff8454d3b322bfbeaa6e.tar.gz
Tarball conversion
Diffstat (limited to 'conf/pam_conv1/pam_conv_l.l')
-rw-r--r--conf/pam_conv1/pam_conv_l.l50
1 files changed, 50 insertions, 0 deletions
diff --git a/conf/pam_conv1/pam_conv_l.l b/conf/pam_conv1/pam_conv_l.l
new file mode 100644
index 0000000..25b6710
--- /dev/null
+++ b/conf/pam_conv1/pam_conv_l.l
@@ -0,0 +1,50 @@
+
+%{
+/*
+ * $Id$
+ *
+ * Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>
+ *
+ * This file is covered by the Linux-PAM License (which should be
+ * distributed with this file.)
+ */
+
+ static const char lexid[]=
+ "$Id$\n"
+ "Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>\n";
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+
+#include "pam_conv_y.h"
+
+ extern int current_line;
+%}
+
+%%
+
+"#"[^\n]* ; /* skip comments (sorry) */
+
+"\\\n" {
+ ++current_line;
+}
+
+([^\n\t ]|[\\][^\n])+ {
+ return TOK;
+}
+
+[ \t]+ ; /* Ignore */
+
+<<EOF>> {
+ return EOFILE;
+}
+
+[\n] {
+ ++current_line;
+ return NL;
+}
+
+%%