GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
al_findnext(3) Allegro manual al_findnext(3)

al_findnext - Finds the next file in a search started by al_findfirst(). Allegro game programming library.

#include <allegro.h>

int al_findnext(struct al_ffblk *info);

This finds the next file in a search started by al_findfirst(). Example:

   if (al_findfirst("*.pcx", &info, 0) != 0)
      return;
   
   do {
      /* Do something useful here with info.name. */
   } while (al_findnext(&info) == 0);
   
   al_findclose(&info);

Returns zero if a match is found, non-zero if none is found or if an error occurred and, in the latter case, sets errno accordingly.

al_findfirst(3), al_findclose(3)
version 4.4.3 Allegro

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.