]> mj.ucw.cz Git - libucw.git/commitdiff
Removed obsolete examples of custom attributes. The image search attributes
authorMartin Mares <mj@ucw.cz>
Sun, 23 Jun 2002 16:21:10 +0000 (16:21 +0000)
committerMartin Mares <mj@ucw.cz>
Sun, 23 Jun 2002 16:21:10 +0000 (16:21 +0000)
themselves are a good enough example.

lib/custom.c
lib/custom.h

index a1aec75f5e25e390246d4b1b40e62f13c04a3820..3e9d19d627a4e15a428dea75df3aa6a09c72fe01 100644 (file)
@@ -95,27 +95,3 @@ custom_ic_parse(u32 *dest, byte *value, uns intval)
 }
 
 #endif
-
-#if 0          /* Example */
-
-/* FIXME: The example is wrong */
-
-void
-custom_get_lm(struct card_attr *ca, byte *attr)
-{
-  if (attr)
-    ca->lm = atol(attr);
-  else
-    ca->lm = 0;
-}
-
-byte *
-custom_parse_lm(u32 *dest, byte *value, uns intval)
-{
-  if (value)
-    return "LM is an integer, not a string";
-  *dest = intval;
-  return NULL;
-}
-
-#endif
index 226d76d87e979f748dc80112d2d58a074462dd38..eedfe0b2b9c27b374d6b7e3404922b097cea8c22 100644 (file)
@@ -141,12 +141,6 @@ byte *custom_ic_parse(u32 *dest, byte *value, uns intval);
 
 #else
 
-#if 0
-
-/* FIXME: Add a simple example */
-
-#else
-
 /* No custom attributes defined */
 
 #define CUSTOM_CARD_ATTRS
@@ -154,5 +148,3 @@ byte *custom_ic_parse(u32 *dest, byte *value, uns intval);
 static inline void custom_create_attrs(struct odes *odes UNUSED, struct card_attr *ca UNUSED) { }
 
 #endif
-
-#endif