|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T a
Length: 769 (0x301) Types: TextFile Names: »ap_s2s.c«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/Lib/addr/ap_s2s.c«
/* ap_s2s: converts a string into a normalise string with given order pref */ /* ap_s2t + ap_normalise + ap_t2s */ # ifndef lint static char Rcsid[] = "@(#)$Header: /cs/research/pp/hubris/pp-beta/Lib/addr/RCS/ap_s2s.c,v 5.0 90/09/20 16:04:05 pp Exp Locker: pp $"; # endif /* * $Header: /cs/research/pp/hubris/pp-beta/Lib/addr/RCS/ap_s2s.c,v 5.0 90/09/20 16:04:05 pp Exp Locker: pp $ * * $Log: ap_s2s.c,v $ * Revision 5.0 90/09/20 16:04:05 pp * rcsforce : 5.0 public release * */ #include "util.h" #include "ap.h" ap_s2s (orig, str_pptr, order_pref) char *orig, **str_pptr; int order_pref; { AP_ptr tree, rettree; tree = ap_s2t(orig); tree = ap_normalize(tree, order_pref); rettree = ap_t2s(tree, str_pptr); ap_free(tree); ap_free(rettree); }