| 91 * |
91 * |
| 92 * Determines if a string is an #FbId. |
92 * Determines if a string is an #FbId. |
| 93 * |
93 * |
| 94 * Return: #TRUE if the string is an #FbId, otherwise #FALSE. |
94 * Return: #TRUE if the string is an #FbId, otherwise #FALSE. |
| 95 */ |
95 */ |
| 96 #define FB_ID_IS_STR(s) fb_util_str_is(s, G_ASCII_DIGIT) |
96 #define FB_ID_IS_STR(s) fb_util_strtest(s, G_ASCII_DIGIT) |
| 97 |
97 |
| 98 /** |
98 /** |
| 99 * FB_ID_TO_STR: |
99 * FB_ID_TO_STR: |
| 100 * @i: The #FbId. |
100 * @i: The #FbId. |
| 101 * @s: The string buffer. |
101 * @s: The string buffer. |