Read formatted data from a string */
| 147 | |
| 148 | /* Read formatted data from a string */ |
| 149 | int sscanf (const char *buffer, const char *format, ...) |
| 150 | { |
| 151 | // |
| 152 | // Null sscanf() function implementation to satisfy the linker, since |
| 153 | // no direct functionality logic dependency in present UEFI cases. |
| 154 | // |
| 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | // |
| 159 | // -- Character Classification Routines -- |
no outgoing calls