Skip to content
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.

Commit

Permalink
lib/parser.c: put EXPORT_SYMBOLs in the conventional place
Browse files Browse the repository at this point in the history
Cc: Du, Changbin <[email protected]>
Cc: Joe Perches <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
akpm00 authored and torvalds committed Jan 24, 2014
1 parent aace050 commit a3d2cca
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions lib/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ int match_token(char *s, const match_table_t table, substring_t args[])

return p->token;
}
EXPORT_SYMBOL(match_token);

/**
* match_number: scan a number in the given base from a substring_t
Expand Down Expand Up @@ -163,6 +164,7 @@ int match_int(substring_t *s, int *result)
{
return match_number(s, result, 0);
}
EXPORT_SYMBOL(match_int);

/**
* match_octal: - scan an octal representation of an integer from a substring_t
Expand All @@ -177,6 +179,7 @@ int match_octal(substring_t *s, int *result)
{
return match_number(s, result, 8);
}
EXPORT_SYMBOL(match_octal);

/**
* match_hex: - scan a hex representation of an integer from a substring_t
Expand All @@ -191,6 +194,7 @@ int match_hex(substring_t *s, int *result)
{
return match_number(s, result, 16);
}
EXPORT_SYMBOL(match_hex);

/**
* match_wildcard: - parse if a string matches given wildcard pattern
Expand Down Expand Up @@ -241,6 +245,7 @@ bool match_wildcard(const char *pattern, const char *str)
++p;
return !*p;
}
EXPORT_SYMBOL(match_wildcard);

/**
* match_strlcpy: - Copy the characters from a substring_t to a sized buffer
Expand All @@ -263,6 +268,7 @@ size_t match_strlcpy(char *dest, const substring_t *src, size_t size)
}
return ret;
}
EXPORT_SYMBOL(match_strlcpy);

/**
* match_strdup: - allocate a new string with the contents of a substring_t
Expand All @@ -280,11 +286,4 @@ char *match_strdup(const substring_t *s)
match_strlcpy(p, s, sz);
return p;
}

EXPORT_SYMBOL(match_token);
EXPORT_SYMBOL(match_int);
EXPORT_SYMBOL(match_octal);
EXPORT_SYMBOL(match_hex);
EXPORT_SYMBOL(match_wildcard);
EXPORT_SYMBOL(match_strlcpy);
EXPORT_SYMBOL(match_strdup);

0 comments on commit a3d2cca

Please sign in to comment.