~ubuntu-branches/ubuntu/oneiric/lmms/oneiric

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/fltk/src/filename_isdir.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-12 13:32:32 UTC
  • mfrom: (1.1.9 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101112133232-vdld83iyji8srqti
Tags: 0.4.7-2ubuntu1
* Re-sync with Debian (LP: #606533):
  - Replace build-dep on libwine-dev with libwine-dev-unstable to build
    against the newer Wine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
 
// "$Id: filename_isdir.cxx 6641 2009-01-20 11:10:29Z fabien $"
 
2
// "$Id: filename_isdir.cxx 6986 2010-01-01 18:30:49Z greg.ercolano $"
3
3
//
4
4
// Directory detection routines for the Fast Light Tool Kit (FLTK).
5
5
//
48
48
}
49
49
 
50
50
/**
51
 
   Determines if a file exists and is a directory from its filename
 
51
   Determines if a file exists and is a directory from its filename.
 
52
   \code
 
53
   #include <FL/filename.H>
 
54
   [..]
 
55
   fl_filename_isdir("/etc");           // returns non-zero
 
56
   fl_filename_isdir("/etc/hosts");     // returns 0
 
57
   \endcode
52
58
   \param[in] n the filename to parse
53
59
   \return non zero if file exists and is a directory, zero otherwise
54
60
*/
93
99
}
94
100
 
95
101
//
96
 
// End of "$Id: filename_isdir.cxx 6641 2009-01-20 11:10:29Z fabien $".
 
102
// End of "$Id: filename_isdir.cxx 6986 2010-01-01 18:30:49Z greg.ercolano $".
97
103
//