===========================================================================
| 692 | |
| 693 | //=========================================================================== |
| 694 | Update_t CmdBookmarkList (int nArgs) |
| 695 | { |
| 696 | if (! g_nBookmarks) |
| 697 | { |
| 698 | ConsoleBufferPushFormat( " There are no current bookmarks. (Max: %d)", MAX_BOOKMARKS ); |
| 699 | } |
| 700 | else |
| 701 | { |
| 702 | _BWZ_ListAll( g_aBookmarks, MAX_BOOKMARKS ); |
| 703 | } |
| 704 | return ConsoleUpdate(); |
| 705 | } |
| 706 | |
| 707 | |
| 708 | //=========================================================================== |
no test coverage detected