Changeset a61fea9a for src/examples


Ignore:
Timestamp:
Jun 4, 2015, 11:35:13 AM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
9a8930f
Parents:
30651b0
Message:

enable AM_MAINTAINER_MODE, add operator ?{}, formatting

Location:
src/examples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/examples/control_structures.c

    r30651b0 ra61fea9a  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed May 27 18:07:42 2015
    13 // Update Count     : 1
     12// Last Modified On : Thu Jun  4 11:21:12 2015
     13// Update Count     : 23
    1414//
    1515
    1616int main() {
    1717        L1: {
    18                 L2: switch ( 3_333_333 ) {                                              // underscores in constant
    19                         case 1,2,3:                                                                     // 4~8, 4...8 not working
     18                L2:     switch ( 3_333_333 ) {                                          // underscores in constant
     19                  case 1,2,3:                                                                   // CFA
     20                  case 4~8:                                                                             // CFA
     21                  case 9 ... 10:                                                                // gcc, must have spaces
    2022                                L3: for ( ;; ) {
    2123                                        L4: for ( ;; ) {
     
    2426                                                break L3;
    2527                                                break L4;
    26 
    2728                                                //continue L1;                                  // labelled continue - should be an error
    2829                                                //continue L2;                                  // should be an error
     
    3839                int i, j;
    3940                choose ( 7 ) {
    40                         case 1,2,3:
    41                                 i = 3;
    42                                 fallthru;
    43                         case 4,5,6:
    44                                 j = 3;
    45                         default: ;
     41                  case 1,2,3:
     42                        i = 3;
     43                        4;
     44                        fallthru;
     45                  case 4,5,6:
     46                        j = 3;
     47                  default: ;
    4648                } // choose
    4749        } // block
  • src/examples/includes.c

    r30651b0 ra61fea9a  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed May 27 18:17:04 2015
    13 // Update Count     : 1
     12// Last Modified On : Wed Jun  3 23:48:26 2015
     13// Update Count     : 6
    1414//
    1515
     
    4949#include <curses.h>
    5050#else
    51 #include <time.h>               // FAILS -- includes locale.h
     51#include <curses.h>
    5252#endif // 0
    5353
Note: See TracChangeset for help on using the changeset viewer.